UNPKG

@bee-design/ui

Version:

Bee Design React UI Library.

19 lines (18 loc) 536 B
import { ReactNode } from 'react'; import { Dayjs } from 'dayjs'; import { ModeType, IconsType } from '../interface'; export interface HeaderProps { prefixCls?: string; title?: ReactNode; onPrev?: () => void; onNext?: () => void; onSuperPrev?: () => void; onSuperNext?: () => void; mode?: ModeType; value?: Dayjs; onChangePanel?: (mode?: ModeType) => void; icons?: IconsType; rtl?: boolean; } declare function Header(props: HeaderProps): JSX.Element; export default Header;