mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
25 lines
503 B
TypeScript
25 lines
503 B
TypeScript
interface ArrowIconProps {
|
|
className: string
|
|
}
|
|
|
|
export default function ArrowIcon({ className }: ArrowIconProps) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
className={className}
|
|
>
|
|
<path
|
|
className="stroke-current text-primary"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M5 12h14M12 19l7-7-7-7"
|
|
></path>
|
|
</svg>
|
|
)
|
|
}
|