import type { HTMLAttributes, PropsWithChildren } from "react";
import { cn } from "../../lib/cn";
import { toCssSize, type LayoutSpacing } from "./layout-primitives";
export type SizedBoxProps = PropsWithChildren<
HTMLAttributes & {
height?: LayoutSpacing;
width?: LayoutSpacing;
}
>;
export function SizedBox({ children, className, height, style, width, ...props }: SizedBoxProps) {
return (
{children}
);
}