UNPKG

@chief-editor/ui

Version:

UI Component for chief editor

9 lines (8 loc) 344 B
import { HTMLAttributes } from 'react'; import { UnionOmit } from '@co-hooks/util'; export interface ISidebarTabItem { active?: boolean; id: string; } export declare type ISidebarTabItemProps = UnionOmit<ISidebarTabItem, HTMLAttributes<HTMLDivElement>>; export declare function SidebarTabItem(props: ISidebarTabItemProps): JSX.Element;