22 lines
397 B
TypeScript
22 lines
397 B
TypeScript
function ChevronLeftIcon() {
|
|
return (
|
|
<svg
|
|
width={7}
|
|
height={12}
|
|
viewBox='0 0 7 12'
|
|
fill='none'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
>
|
|
<path
|
|
d='M0.75 1L5.75 6L0.75 11'
|
|
stroke='currentColor'
|
|
strokeWidth={1.2}
|
|
strokeLinecap='round'
|
|
strokeLinejoin='round'
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ChevronLeftIcon;
|