UNPKG

@masaischool/lotus

Version:

Masai UI component library designed to work seamlessly with Chakra UI

9 lines (8 loc) 266 B
/// <reference types="react" /> export interface Props { activeType: 'pill' | 'line'; label: string; active?: boolean; disabled?: boolean; } export declare const Tab: ({ activeType, label, active, disabled, ...props }: Props) => JSX.Element;