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