import { cn } from "@/commons"; import type { ReactNode } from "react"; export function Frame({ children, shadow, className, }: { children: ReactNode; shadow?: boolean; className?: string }) { return (
{children}
); }