@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
11 lines (10 loc) • 342 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface HeadingProperties {
theme?: Theme;
type?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
style?: React.CSSProperties;
className?: string;
}
declare const Heading: React.FC<React.PropsWithChildren<HeadingProperties>>;
export default Heading;