import React from 'react'; import { Card } from '@/components/ui/card'; import { cn } from '@/lib/utils'; export const frostedCardClass = cn( 'border border-slate-200 bg-white text-slate-900 shadow-lg shadow-rose-100/30 backdrop-blur', 'dark:border-slate-800/70 dark:bg-slate-950/85 dark:text-slate-100' ); type FrostedCardProps = React.ComponentProps; export function FrostedCard({ className, ...props }: FrostedCardProps) { return ; } type FrostedSurfaceProps = React.HTMLAttributes & { asChild?: boolean; }; export function FrostedSurface({ className, ...props }: FrostedSurfaceProps) { return (
); }