import React from 'react'; import './style'; interface AlertProps { kind?: 'info' | 'positive' | 'negative' | 'warning'; } const prefixCls = 'happy-alert'; const kinds = { info: '#5352ED', positive: '#2ED573', negative: '#FF4757', warning: '#FFA502', }; const Alert: React.FC = ({ children, kind = 'info', ...rest }) => (
{children}
); export default Alert;