@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
15 lines (14 loc) • 520 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { PropsWithChildren } from "react";
import { ButtonColor, ButtonSize, ButtonVariant } from "./button.shared";
interface ButtonGroupProps extends PropsWithChildren<ViewProps> {
variant?: ButtonVariant;
shape?: "round";
size?: ButtonSize;
color?: ButtonColor;
block?: boolean;
hairline?: boolean;
disabled?: boolean;
}
declare function ButtonGroup(props: ButtonGroupProps): JSX.Element;
export default ButtonGroup;