@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
10 lines (9 loc) • 405 B
TypeScript
import React from 'react';
import { BlockProps } from './interfaces';
declare const TITLE_LEVELS: [1, 2, 3, 4, 5];
declare type TitleLevelType = typeof TITLE_LEVELS[number];
export declare type TitleProps = Omit<BlockProps & {
level?: TitleLevelType;
}, 'strong'>;
declare const _default: React.ForwardRefExoticComponent<TitleProps & React.RefAttributes<HTMLHeadingElement>>;
export default _default;