import type { HTMLAttributes, PropsWithChildren } from "react"; import { cn } from "../../lib/cn"; export type FlexibleProps = PropsWithChildren< HTMLAttributes & { fit?: "loose" | "tight"; } >; export function Flexible({ children, className, fit = "loose", style, ...props }: FlexibleProps) { return (
{children}
); }