25 lines
493 B
TypeScript
25 lines
493 B
TypeScript
import { cn } from "~/utils/cn";
|
|
|
|
export function BreadcrumbIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={cn("text-charcoal-600", className)}
|
|
width="9"
|
|
height="20"
|
|
viewBox="0 0 9 26"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<line
|
|
x1="9"
|
|
y1="0.7"
|
|
x2="0.7"
|
|
y2="25"
|
|
strokeWidth={1.4}
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|