mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
47ad3f9982
* Docs have been migrated from docbook to yaml + jinja2 + pandoc * Created a new (basic) website for docs based on React + Tailwinds
25 lines
505 B
TypeScript
25 lines
505 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>
|
|
)
|
|
}
|