import { FC } from 'react' import { clx } from '../helpers/utils' type Props = { variant: 'success' | 'error' | 'warning', text: string, } const StatusWithText: FC = (props: Props) => { return (
{props.text}
) } export default StatusWithText