{"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 \r\n
\r\n {severity === 'error' && }\r\n {severity === 'success' && }\r\n {severity === 'info' && }\r\n {severity === 'warning' && }\r\n
\r\n
{children}
\r\n \r\n );\r\n};\r\n"],"names":["Alert","props","severity","children","className","jsxs","clsx","jsx","FaTimesCircle","FaCheckCircle","FaInfoCircle","FaExclamationTriangle"],"mappings":"+EAwBa,MAAAA,EAASC,GAAkB,CACtC,KAAM,CAAE,SAAAC,EAAU,SAAAC,EAAU,UAAAC,EAAY,mBAAsBH,EAG5D,OAAAI,EAAA,KAAC,MAAA,CACC,UAAWC,EAAKF,EAAW,8CAA+C,CACxE,eAAgBF,IAAa,UAC7B,aAAcA,IAAa,QAC3B,cAAeA,IAAa,OAC5B,gBAAiBA,IAAa,SAAA,CAC/B,EAED,SAAA,CAACG,EAAAA,KAAA,MAAA,CAAI,UAAU,OACZ,SAAA,CAAAH,IAAa,SAAWK,EAAA,IAACC,EAAc,CAAA,UAAU,eAAe,EAChEN,IAAa,WAAcK,EAAA,IAAAE,EAAA,CAAc,UAAU,iBAAiB,EACpEP,IAAa,QAAWK,EAAA,IAAAG,EAAA,CAAa,UAAU,gBAAgB,EAC/DR,IAAa,WAAcK,EAAA,IAAAI,EAAA,CAAsB,UAAU,kBAAkB,CAAA,EAChF,EACAJ,MAAC,OAAK,SAAAJ,EAAS,CAAA,CAAA,CAAA,CAGrB"}