UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

19 lines 577 B
import type { Icon } from "../../../components/elements/icon/Icon"; export interface Tab { style?: object; title?: string; active?: boolean; disabled?: any; iconLeft?: Icon | string; iconRight?: Icon | string; children?: any; onClick?: Function; onBlur?: Function; scale?: number; toggle?: boolean; fit?: boolean; show?: "desktop" | "laptop" | "tablet" | "mobile"; hide?: "desktop" | "laptop" | "tablet" | "mobile"; } export default function Tab(props: Tab): import("react").JSX.Element; //# sourceMappingURL=Tab.d.ts.map