@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
11 lines (10 loc) • 407 B
TypeScript
//#region src/buttonGroup/context.d.ts
interface ButtonGroupContextValue {
disabled?: boolean;
size?: string;
variant?: string;
}
declare const ButtonGroupProvider: import("react").Provider<ButtonGroupContextValue>, useButtonGroupContext: () => ButtonGroupContextValue;
//#endregion
export { ButtonGroupContextValue, ButtonGroupProvider, useButtonGroupContext };
//# sourceMappingURL=context.d.ts.map