@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
15 lines (14 loc) • 363 B
TypeScript
export interface SidebarHeadingProps {
/** The heading level e.g. H1, H2, etc. */
level?: number | string;
/** The title text shown by the heading */
title?: string;
}
declare const SidebarHeading: {
(props: SidebarHeadingProps): any;
defaultProps: {
level: number;
title: string;
};
};
export default SidebarHeading;