UNPKG

@i-novus/ui-core

Version:

Базовые UI компоненты

10 lines (9 loc) 476 B
import React from 'react'; import { ComponentBaseProps } from '../../core'; import { TypographyBodyProps } from './Typography'; declare const typographyLevel: readonly [1, 2, 3, 4, 5, 6]; export interface TitleProps extends TypographyBodyProps, ComponentBaseProps { level?: typeof typographyLevel[number] | `${typeof typographyLevel[number]}`; } export declare const Title: React.ForwardRefExoticComponent<TitleProps & React.RefAttributes<HTMLHeadingElement>>; export {};