@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
19 lines (18 loc) • 655 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.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