UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

5 lines (4 loc) 299 B
import type { ButtonProps } from "./Button"; export type ButtonGroupContextValue = Pick<ButtonProps, "outline" | "pill"> | undefined; export declare const ButtonGroupContext: import("react").Context<ButtonGroupContextValue>; export declare function useButtonGroupContext(): ButtonGroupContextValue;