16 lines
491 B
TypeScript
16 lines
491 B
TypeScript
import { FC } from 'react';
|
|
|
|
interface IconArrowLeftProps {
|
|
className?: string;
|
|
}
|
|
|
|
const IconArrowLeft: FC<IconArrowLeftProps> = ({ className }) => {
|
|
return (
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
|
|
<path d="M4 12H20M20 12L14 6M20 12L14 18" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default IconArrowLeft;
|