UNPKG

@codeworker.br/govbr-tw-react

Version:

Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.

14 lines (13 loc) 502 B
import { VariantProps } from "class-variance-authority"; import { ComponentProps } from "react"; import tabsVariants from "./variants"; interface TabsProps extends ComponentProps<"div">, VariantProps<typeof tabsVariants> { value: string; contentHeight?: string; } declare const Tabs: { ({ className, children, variant, density, contentHeight, onChange, value, ref, ...props }: TabsProps): import("react/jsx-runtime").JSX.Element; Trigger: any; Content: any; }; export default Tabs;