Files
web/packages/design-system/lib/components/Breadcrumbs/Arrow/index.tsx
Erik Tiekstra 8a143a2916 chore: Moved Breadcrumbs to design system and added stories
Approved-by: Bianca Widstam
2026-01-21 07:19:19 +00:00

16 lines
410 B
TypeScript

import { arrowVariants } from "./variants"
import type { ArrowProps } from "./arrow"
export function Arrow({ color, size }: ArrowProps) {
const className = arrowVariants({ color, size })
return (
<div className={className}>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 13">
<path d="M13.093 12.193.9 0h25.8L14.508 12.193a1 1 0 0 1-1.415 0Z" />
</svg>
</div>
)
}