import { cn } from "helpers/cn"; export const BaseNotification = ({ children, className, icon, }: { children: React.ReactNode; className?: string; icon?: React.ReactNode; }) => { return (
{icon}
{children}
); };