import { Icon } from "lucide-react" interface IAlertLabelProps { Icon: Icon, backgroundColor: string, textColor?: string, label: string, } export const AlertLabel = ({ Icon, backgroundColor,textColor, label }: IAlertLabelProps) => { return (