UNPKG

soda-material

Version:

A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)

11 lines (10 loc) 394 B
/// <reference types="react" /> import './tab.scss'; /** * Use `<Tab>` to wrap it */ export declare const TabPanel: import("react").ForwardRefExoticComponent<{ value: string; children?: React.ReactNode; active?: boolean | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "value" | "children" | "active"> & import("react").RefAttributes<HTMLDivElement>>;