UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

18 lines (17 loc) 633 B
import { CompoundStylesApiProps, Factory } from '../../core'; import { ModalBaseTitleProps } from '../ModalBase'; export type DrawerTitleStylesNames = 'title'; export interface DrawerTitleProps extends ModalBaseTitleProps, CompoundStylesApiProps<DrawerTitleFactory> { } export type DrawerTitleFactory = Factory<{ props: DrawerTitleProps; ref: HTMLHeadingElement; stylesNames: DrawerTitleStylesNames; compound: true; }>; export declare const DrawerTitle: import("../../core").MantineComponent<{ props: DrawerTitleProps; ref: HTMLHeadingElement; stylesNames: DrawerTitleStylesNames; compound: true; }>;