import { type ReactNode } from "react"; import { cn } from "~/utils/cn"; type ChildrenClassName = { children: ReactNode; className?: string; }; function PropertyTable({ children, className }: { children: ReactNode; className?: string }) { return
{children}
; } function PropertyItem({ children, className }: ChildrenClassName) { return
{children}
; } function PropertyLabel({ children, className }: ChildrenClassName) { return
{children}
; } function PropertyValue({ children, className }: ChildrenClassName) { return
{children}
; } export { PropertyItem as Item, PropertyLabel as Label, PropertyTable as Table, PropertyValue as Value, };