react-life-design
Version:
Life Design UI components
12 lines (11 loc) • 621 B
TypeScript
import * as React from 'react';
export interface IProps {
children: any;
}
export default class Title extends React.PureComponent<IProps> {
static H1: import("styled-components").StyledComponent<"h1", any, import("./HeadingsModule").IProps, never>;
static H2: import("styled-components").StyledComponent<"h2", any, import("./HeadingsModule").IProps, never>;
static H3: import("styled-components").StyledComponent<"h3", any, import("./HeadingsModule").IProps, never>;
static H5: import("styled-components").StyledComponent<"h5", any, import("./HeadingsModule").IProps, never>;
render: () => any;
}