UNPKG

hoda-react

Version:

<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <

16 lines (15 loc) 522 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { ButtonProps } from '../Button'; export interface FlowbiteButtonGroupTheme { base: string; position: PositionInButtonGroup; } export interface PositionInButtonGroup { none: string; start: string; middle: string; end: string; } export type ButtonGroupProps = PropsWithChildren<ComponentProps<'div'> & Pick<ButtonProps, 'outline' | 'pill'>>; declare const ButtonGroup: FC<ButtonGroupProps>; export default ButtonGroup;