@up-group/react-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
24 lines (23 loc) • 1.03 kB
TypeScript
/// <reference types="react" />
import { UpHeadingProps } from './';
import { ThemeInterface } from "../../../Common/theming/types";
export declare const H1: React.ComponentClass<React.HTMLProps<HTMLHeadingElement> & UpHeadingProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;
export declare const H2: React.ComponentClass<React.HTMLProps<HTMLHeadingElement> & UpHeadingProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;
export declare const H3: React.ComponentClass<React.HTMLProps<HTMLHeadingElement> & UpHeadingProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;
export declare const H4: React.ComponentClass<React.HTMLProps<HTMLHeadingElement> & UpHeadingProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;
export declare const H5: React.ComponentClass<React.HTMLProps<HTMLHeadingElement> & UpHeadingProps & {
theme?: ThemeInterface;
innerRef?: (instance: any) => void;
}>;