import React from 'react'; import { Box } from '../../primitives'; import { usePropsConfig } from '../../../theme'; import type { IAlertProps } from './props'; export const AlertContext = React.createContext({}); const Alert = ({ children, ...props }: IAlertProps) => { const { status, variant, iconColor, textColor, ...newProps } = usePropsConfig( 'Alert', props ); return ( {children} ); }; export default Alert;