1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-01 22:49:09 +00:00
conky/web/components/ArrowIcon.tsx

25 lines
503 B
TypeScript
Raw Normal View History

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
2022-10-14 14:55:06 +00:00
className="stroke-current text-primary"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M5 12h14M12 19l7-7-7-7"
></path>
</svg>
)
}