@material-ui/core
Version:
React components that implement Google's Material Design.
85 lines (78 loc) • 1.88 kB
TypeScript
import * as React from 'react';
import { StandardProps, PropTypes } from '..';
import { OverrideProps, OverridableTypeMap, OverridableComponent } from '../OverridableComponent';
import { Variant as ThemeVariant } from '../styles/createTypography';
type Variant = ThemeVariant | 'srOnly';
export interface TypographyTypeMap<P = {}, D extends React.ElementType = 'span'> {
props: P & {
align?: PropTypes.Alignment;
/**
* The content of the component.
*/
children?: React.ReactNode;
color?:
| 'initial'
| 'inherit'
| 'primary'
| 'secondary'
| 'textPrimary'
| 'textSecondary'
| 'error';
display?: 'initial' | 'block' | 'inline';
gutterBottom?: boolean;
noWrap?: boolean;
paragraph?: boolean;
variant?: Variant | 'inherit';
variantMapping?: Partial<Record<Variant, string>>;
};
defaultComponent: D;
classKey: TypographyClassKey;
}
/**
*
* Demos:
*
* - [Breadcrumbs](https://mui.com/components/breadcrumbs/)
* - [Typography](https://mui.com/components/typography/)
*
* API:
*
* - [Typography API](https://mui.com/api/typography/)
*/
declare const Typography: OverridableComponent<TypographyTypeMap>;
export type TypographyProps<
D extends React.ElementType = TypographyTypeMap['defaultComponent'],
P = {}
> = OverrideProps<TypographyTypeMap<P, D>, D>;
export type TypographyClassKey =
| 'root'
| 'h1'
| 'h2'
| 'h3'
| 'h4'
| 'h5'
| 'h6'
| 'subtitle1'
| 'subtitle2'
| 'body1'
| 'body2'
| 'caption'
| 'button'
| 'overline'
| 'srOnly'
| 'alignLeft'
| 'alignCenter'
| 'alignRight'
| 'alignJustify'
| 'noWrap'
| 'gutterBottom'
| 'paragraph'
| 'colorInherit'
| 'colorPrimary'
| 'colorSecondary'
| 'colorTextPrimary'
| 'colorTextSecondary'
| 'colorError'
| 'displayInline'
| 'displayBlock';
export default Typography;