UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

13 lines (12 loc) 477 B
/// <reference types="react" /> import './tab.scss'; /** * Use `<Tab>` to wrap it */ export declare const TabItem: import("react").ForwardRefExoticComponent<{ value: string; children?: React.ReactNode; icon?: React.ReactNode; active?: boolean | undefined; as?: keyof JSX.IntrinsicElements | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "value" | "children" | "icon" | "active"> & import("react").RefAttributes<HTMLElement>>;