mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 08:59:15 +08:00
17 lines
494 B
TypeScript
17 lines
494 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('typography');
|
||
|
|
||
|
rootPropsTest('typography', (Typography, props) => <Typography.Title {...props} />, {
|
||
|
name: 'Typography.Title',
|
||
|
});
|
||
|
|
||
|
rootPropsTest('typography', (Typography, props) => <Typography.Text {...props} />, {
|
||
|
name: 'Typography.Text',
|
||
|
});
|
||
|
|
||
|
rootPropsTest('typography', (Typography, props) => <Typography.Paragraph {...props} />, {
|
||
|
name: 'Typography.Paragraph',
|
||
|
});
|