/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ import type { ButtonProps } from "../button/ButtonProps"; /** * Buttons of the Button Group */ export type Buttons = ButtonProps[]; /** * Set the buttons to a color neutral variant */ export type ColorNeutral = boolean; /** * Size of button to use */ export type Size = "small" | "medium" | "large"; /** * Vertical arrangement of the buttons */ export type ButtonArrangement = "left" | "center" | "right" | "space-between" | "grow"; /** * Add additional css classes that should be applied to the button */ export type AdditionalClasses = string; export interface ButtonGroupProps { buttons?: Buttons; colorNeutral?: ColorNeutral; size?: Size; arrangement?: ButtonArrangement; className?: AdditionalClasses; }