UNPKG

@brizy/ui

Version:
12 lines (11 loc) 326 B
import { ReactElement, ReactNode } from "react"; import { IconsName } from "../../EditorIcon/types"; export type Props<T> = { value: T; className?: string; title?: string; label?: string; icon?: IconsName; children?: ReactNode; }; export declare const Tab: <T>({ children }: Props<T>) => ReactElement;