UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines (14 loc) 541 B
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../core'; export type TypographyStylesNames = 'root'; export interface TypographyProps extends BoxProps, StylesApiProps<TypographyFactory>, ElementProps<'div'> { } export type TypographyFactory = Factory<{ props: TypographyProps; ref: HTMLDivElement; stylesNames: TypographyStylesNames; }>; export declare const Typography: import("../../core").MantineComponent<{ props: TypographyProps; ref: HTMLDivElement; stylesNames: TypographyStylesNames; }>;