{"version":3,"file":"Alert-BxdGojNH.js","sources":["../../src/core/components/Alert.tsx"],"sourcesContent":["import { clsx } from 'clsx';\r\nimport type * as React from 'react';\r\nimport { FaCheckCircle, FaExclamationTriangle, FaInfoCircle, FaTimesCircle } from 'react-icons/fa';\r\n\r\ninterface IProps {\r\n /**\r\n * Severity level of the alert\r\n */\r\n severity: 'success' | 'info' | 'warning' | 'error';\r\n /**\r\n * Optional class for the whole alert component\r\n * @default my-4 first:mt-0\r\n */\r\n className?: string;\r\n /**\r\n * Content of the alert\r\n */\r\n children: React.ReactNode[] | React.ReactNode | string;\r\n}\r\n\r\n/**\r\n *\r\n * @param props IProps\r\n */\r\nexport const Alert = (props: IProps) => {\r\n const { severity, children, className = 'my-4 first:mt-0' } = props;\r\n\r\n return (\r\n