in components/icons.tsx [193:219]
export function LeftChevron({ size = "16px" }: IconProps) {
return (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g
transform="matrix(
1 0
0 1
5.60009765625 2
)"
>
<path
fillRule="nonzero"
clipRule="nonzero"
d="M3.79999 10L11.5 20L7.69998 20L0 10L7.69998 0L11.5 0L3.79999 10Z"
fill="currentColor"
opacity="1"
/>
</g>
</svg>
);
}