7 lines
357 B
TypeScript
7 lines
357 B
TypeScript
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>
|
|
)
|
|
} |