robust-react-ui
Version:
A React component library, built with a focus on accessibility, extensibility and reusability.
9 lines (8 loc) • 437 B
TypeScript
/// <reference types="react" />
import { ITypographyProps } from './Typography.types';
declare const Typography: {
({ children }: ITypographyProps): JSX.Element;
Heading: ({ children, level, jumbo, id }: import("../Heading/Heading.types").IHeadingProps) => JSX.Element;
Paragraph: ({ children, id, size, bolded, }: import("../Paragraph/Paragraph.types").IParagraphProps) => JSX.Element;
};
export default Typography;