import React from 'react'; import { Text } from '../../primitives'; import { usePropsConfig } from '../../../theme'; import { AlertContext, IAlertContext } from './index'; const AlertDescription = ({ children, ...props }: any) => { const newProps = usePropsConfig('AlertDescription', props); const { textColor }: IAlertContext = React.useContext(AlertContext); return ( {children} ); }; export default AlertDescription;