import { FC } from 'react';

interface IconExportProps {
    className?: string;
    fill?: boolean;
    duotone?: boolean;
}

const IconExport: FC<IconExportProps> = ({ className, fill = false, duotone = true }) => {
    return (
        <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" className={className}>
            <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="1.5">
                <path opacity={duotone ? '0.5' : '1'} d="M4 12a8 8 0 1 0 16 0"/>
                <path opacity={duotone ? '0.5' : '1'} stroke-linejoin="round" d="M12 14V4m0 0l3 3m-3-3L9 7"/>
            </g>
        </svg>
    );
};

export default IconExport;