Files
ef_front/app/components/svgs/arrow.tsx

7 lines
357 B
TypeScript
Raw Permalink Normal View History

2025-09-07 22:57:43 +00:00
export default function Arrow({ color, width, height }: { color: string, width: number, height: number }) {
return (
<svg width={width} height={height} viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1.5L6 6.5L11 1.5" stroke={color} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
)
}