mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { CloseSquareFilled } from '@ant-design/icons';
|
|
import { Alert } from 'antd';
|
|
|
|
const onClose = (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => {
|
|
console.log(e, 'I was closed.');
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Alert
|
|
message="Warning Text Warning Text Warning TextW arning Text Warning Text Warning TextWarning Text"
|
|
type="warning"
|
|
closable
|
|
onClose={onClose}
|
|
/>
|
|
<br />
|
|
<Alert
|
|
message="Error Text"
|
|
description="Error Description Error Description Error Description Error Description Error Description Error Description"
|
|
type="error"
|
|
closable
|
|
onClose={onClose}
|
|
/>
|
|
<br />
|
|
<Alert
|
|
message="Error Text"
|
|
description="Error Description Error Description Error Description Error Description Error Description Error Description"
|
|
type="error"
|
|
closable={{
|
|
'aria-label': 'close',
|
|
closeIcon: <CloseSquareFilled />,
|
|
}}
|
|
onClose={onClose}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|