import { MessageColor } from '@utils/Constants'
import Markdown from './Markdown'
const Message = ({ type, children }: MessageProps): JSX.Element => {
return (
{ typeof children === 'string' ? : children }
)
}
interface MessageProps {
type?: 'success' | 'error' | 'warning' | 'info'
children: JSX.Element | JSX.Element[] | string
}
export default Message