mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-17 23:50:52 +08:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { Alert, Button, Space } from 'antd';
|
|
|
|
import SemanticPreview from '../../../.dumi/theme/common/SemanticPreview';
|
|
import useLocale from '../../../.dumi/hooks/useLocale';
|
|
|
|
const locales = {
|
|
cn: {
|
|
root: '根元素',
|
|
section: '内容元素',
|
|
icon: '图标元素',
|
|
title: '标题元素',
|
|
description: '描述元素',
|
|
actions: '操作组元素',
|
|
},
|
|
en: {
|
|
root: 'Root element',
|
|
section: 'Content element',
|
|
icon: 'Icon element',
|
|
title: 'title element',
|
|
description: 'Description element',
|
|
actions: 'Actions element',
|
|
},
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const [locale] = useLocale(locales);
|
|
return (
|
|
<SemanticPreview
|
|
componentName="Alert"
|
|
semantics={[
|
|
{ name: 'root', desc: locale.root, version: '6.0.0' },
|
|
{ name: 'icon', desc: locale.icon, version: '6.0.0' },
|
|
{ name: 'section', desc: locale.section, version: '6.0.0' },
|
|
{ name: 'title', desc: locale.title, version: '6.0.0' },
|
|
{ name: 'description', desc: locale.description, version: '6.0.0' },
|
|
{ name: 'actions', desc: locale.actions, version: '6.0.0' },
|
|
]}
|
|
>
|
|
<Alert
|
|
title="Info Text"
|
|
showIcon
|
|
description="Info Description Info Description Info Description Info Description"
|
|
type="info"
|
|
action={
|
|
<Space vertical>
|
|
<Button size="small" type="primary">
|
|
Accept
|
|
</Button>
|
|
<Button size="small" danger ghost>
|
|
Decline
|
|
</Button>
|
|
</Space>
|
|
}
|
|
/>
|
|
</SemanticPreview>
|
|
);
|
|
};
|
|
|
|
export default App;
|