import "./index.scss"; import clsx from "clsx"; export function LinkedList({ children, className, ...other }: React.HTMLProps) { return ( ); } export function LinkedListItem({ children, className, label, ...other }: React.HTMLProps & { label: React.ReactNode }) { return (
  • {label &&
    {label}
    }
    {children}
  • ); } export function Card({ as, children, className, ...other }: React.HTMLProps & { as?: any }) { const Component = as || "div"; return ( {children} ); }