UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

17 lines (16 loc) 651 B
import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import { DropdownContextType } from './context'; import { BaseProps } from '../_base/baseComponent'; export type DropdownTitleProps = BaseProps; declare class DropdownTitle extends PureComponent<DropdownTitleProps> { static propTypes: { children: PropTypes.Requireable<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; style: PropTypes.Requireable<object>; }; static contextType: React.Context<DropdownContextType>; context: DropdownContextType; render(): React.JSX.Element; } export default DropdownTitle;