@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
15 lines (14 loc) • 389 B
TypeScript
import { IKind } from '../../atoms/Icon';
declare type ITabNav = {
isSelected?: boolean;
isDisabled?: boolean;
title?: string;
subtitle?: string;
icon?: IKind;
variant?: 'default' | 'secondary';
total?: string;
colorTotal?: 'neutral' | 'info' | 'success' | 'warning' | 'critical';
isSmall?: boolean;
[rest: string]: any;
};
export type { ITabNav };