import type { HTMLAttributes, PropsWithChildren } from "react"; import { cn } from "../../lib/cn"; export type ExpandedProps = PropsWithChildren>; export function Expanded({ children, className, style, ...props }: ExpandedProps) { return (
{children}
); }