UNPKG

@codeworker.br/govbr-tw-react

Version:

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

17 lines (16 loc) 820 B
import { ReactNode } from "react"; import { type VariantProps } from "class-variance-authority"; declare const groupVariants: (props?: ({ variant?: "default" | "dark" | "subtle" | null | undefined; density?: "compact" | "comfortable" | null | undefined; bordered?: boolean | null | undefined; divided?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type ItemGroupProps = { children: ReactNode; propagateVariant?: boolean; stripChildBorders?: boolean; className?: string; } & VariantProps<typeof groupVariants>; export default function ItemGroup({ children, className, variant, density, bordered, divided, propagateVariant, stripChildBorders, }: ItemGroupProps): import("react/jsx-runtime").JSX.Element; export {};