import { cn } from "@/lib/utils"; interface AsideProps { icon?: string; children?: React.ReactNode; type?: "default" | "warning" | "danger"; } export function Aside({ children, icon, type = "default", ...props }: AsideProps) { return (
{icon || "💡"}
{children}
); }