import React from 'react'; import t from 'prop-types'; import { AlertProps, KindMap } from './interface'; const prefixCls = 'happy-alert'; const kinds: KindMap = { info: '#5352ED', positive: '#2ED573', negative: '#FF4757', warning: '#FFA502', }; const Alert: React.FC = ({ children, kind = 'info', ...rest }) => (
{children}
); Alert.propTypes = { kind: t.oneOf(['info', 'positive', 'negative', 'warning']), }; export default Alert;