mfg-ui-components
Version:
React UI library with reusable components
11 lines (10 loc) • 355 B
TypeScript
import './Heading.scss';
export type size = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export interface Props {
Type: size;
HeadingClass?: any;
children: string;
HeadingId?: any;
}
export declare const Heading: ({ Type: Element, HeadingClass, children, HeadingId }: Props) => import("react/jsx-runtime").JSX.Element;
export default Heading;