16 lines
345 B
TypeScript
16 lines
345 B
TypeScript
function ChevronLeftIcon() {
|
|
return (
|
|
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M7.875 3.5 4.375 7l3.5 3.5"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ChevronLeftIcon;
|