import type { HTMLAttributes, ReactNode } from "react"; import { cn } from "../lib/cn"; interface GlassProps extends HTMLAttributes { children: ReactNode; tone?: "default" | "strong" | "soft"; } export function GlassSurface({ children, className, tone = "default", ...props }: GlassProps) { return (
{children}
); } export function GlassCard({ children, className, tone = "default", ...props }: GlassProps) { return (
{children}
); }