UNPKG

@spicy-ui/core

Version:

A themable and extensible React UI library, ready to use out of the box

8 lines (7 loc) 389 B
import { SxProp } from '../../system'; import { AsProp, ChildrenProp, HTMLAttributes } from '../../types'; export interface TabProps extends HTMLAttributes, AsProp, ChildrenProp, SxProp { isDisabled?: boolean; isSelected?: boolean; } export declare const Tab: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, TabProps, never>;