import { FC } from 'react';

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

const IconCaretLeft: FC<IconCaretLeftProps> = ({ className, fill = false, duotone = true }) => {
    return (
        <>
            {!fill ? (
               <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" className={className}>
                <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m15 5l-6 7l6 7"/>
               </svg>
            ) : (
               <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" className={className}>
                <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m15 5l-6 7l6 7"/>
               </svg>
            )}
        </>
    );
};

export default IconCaretLeft;
