custom-app
Version:
ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������
16 lines (15 loc) • 452 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;
}
interface InternalTypographyProps extends TypographyProps {
component?: string;
setContentRef?: (node: HTMLElement) => void;
}
declare const Typography: React.SFC<InternalTypographyProps>;
export default Typography;