"use client"; import { CaretRight } from "@phosphor-icons/react/dist/ssr/CaretRight"; import { House } from "@phosphor-icons/react/dist/ssr/House"; import clsx from "clsx"; import type { ComponentProps, ReactNode } from "react"; import styles from "./index.module.scss"; import { Button } from "../Button/index.js"; import { Link } from "../Link/index.js"; import { Breadcrumbs as UnstyledBreadcrumbs, Breadcrumb, } from "../unstyled/Breadcrumbs/index.js"; type OwnProps = { label: string; items: [ ...{ href: string; label: string; }[], { label: ReactNode }, ]; }; type Props = Omit, keyof OwnProps> & OwnProps; export const Breadcrumbs = ({ label, className, items, ...props }: Props) => ( );