export default function Badge({ children, icon, }: { children: React.ReactNode; icon: React.ReactNode; }) { return (
{icon} {children}
); }