kanban-app/frontend/src/components/icons/ChevronLeftIcon.tsx

17 lines
330 B
XML

const ChevronLeftIcon = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="10"
height="10"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M15 18l-6-6 6-6" />
</svg>
);
export default ChevronLeftIcon;