zzz / frontend /src /assets /chevron-right.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame
644 Bytes
interface ChevronRightProps {
width?: number;
height?: number;
active?: boolean;
}
export function ChevronRight({
width = 20,
height = 20,
active,
}: ChevronRightProps) {
return (
<svg
width={width}
height={height}
viewBox={`0 0 ${width} ${height}`}
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M8.79602 4.99634L13.3449 10.0001L8.79602 15.0038L7.87109 14.163L11.6556 10.0001L7.87109 5.83718L8.79602 4.99634Z"
fill={active ? "#D4D4D4" : "#525252"}
/>
</svg>
);
}