import type { PropsWithChildren } from "react"; export interface GridFrameProps extends PropsWithChildren { density?: "compact" | "dense"; } export function GridFrame({ children, density = "dense" }: GridFrameProps) { return (
{children}
); }