chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,24 @@
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>
);
}