UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

24 lines (23 loc) 912 B
import { ThemeProps, WithoutThemeProps } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { GroupProps } from "../group/group.js"; import { ButtonStyle } from "./button.style.js"; //#region src/components/button/button-group.d.ts interface ButtonGroupRootProps extends WithoutThemeProps<GroupProps, ButtonStyle>, ThemeProps<ButtonStyle> { /** * If `true`, all wrapped button will be disabled. * * @default false */ disabled?: boolean; } /** * `Button` is an interactive component that allows users to perform actions such as submitting forms and toggling modals. * * @see https://yamada-ui.com/docs/components/button */ declare const ButtonGroupRoot: Component<"div", ButtonGroupRootProps>; //#endregion export { ButtonGroupRoot, ButtonGroupRootProps }; //# sourceMappingURL=button-group.d.ts.map