ant-design/.dumi/theme/builtins/Alert/index.tsx
二货爱吃白萝卜 2cdf586291
chore: fix lint (#43873)
* chore: fix lint

* chore: fix lint

* test: fix 16

* fix: lint
2023-07-28 16:17:43 +08:00

10 lines
253 B
TypeScript

import React from 'react';
import type { AlertProps } from 'antd';
import { Alert } from 'antd';
const MdAlert: React.FC<AlertProps> = ({ style, ...props }) => (
<Alert {...props} style={{ margin: '24px 0', ...style }} />
);
export default MdAlert;