Files
icehrm/web/node_modules/antd/lib/typography/Typography.d.ts
2020-05-20 18:47:29 +02:00

12 lines
320 B
TypeScript

import * as React from 'react';
export interface TypographyProps {
id?: string;
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
['aria-label']?: string;
}
declare const ExportTypography: React.FC<TypographyProps>;
export default ExportTypography;