@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
13 lines (12 loc) • 589 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
//#region src/buttonGroup/buttonGroup.types.d.ts
type ButtonGroupProps = SystemProps & ThemingProps<'ButtonGroup'> & {
/** Available theme colors for this component. @deprecated */colorScheme?: string; /** Makes all wrapped buttons disabled. */
disabled?: boolean; /** Border color between the buttons. */
innerBorderColor?: string; /** variant of the button-group. */
variant?: string;
};
//#endregion
export { ButtonGroupProps };
//# sourceMappingURL=buttonGroup.types.d.ts.map