UNPKG

payzli-ui

Version:

A custom react components library

13 lines (12 loc) 396 B
export interface ITabGroup { children: React.ReactNode; onChange: (event: React.MouseEvent<HTMLDivElement>, newValue: any) => void; value: any; className?: string; type: "primary" | "secondary" | "tertiary" | "underline" | "underline-primary" | "button"; size: "sm" | "md"; fullwidth?: boolean; ref?: any; id?: string; isActiveTabClickEnabled?: boolean; }