@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
50 lines (49 loc) • 1.31 kB
TypeScript
import { Classes } from '../../types';
declare const _default: import("vue").DefineComponent<{
/**
* Display the button group with vertical orientation
* @type Boolean
* @default false
* @name vertical
*/
vertical: {
type: BooleanConstructor;
default: boolean;
};
/**
* Display the button group as a block, spanning the full container width
* @type Boolean
* @default false
* @name block
*/
block: {
type: BooleanConstructor;
default: boolean;
};
/**
* The disabled state of the button group
* @type Boolean
* @default false
* @name disabled
*/
disabled: {
type: BooleanConstructor;
default: boolean;
};
}, unknown, unknown, {
classes(): Classes;
isDisabled(): boolean;
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
vertical?: unknown;
block?: unknown;
disabled?: unknown;
} & {
disabled: boolean;
block: boolean;
vertical: boolean;
} & {}>, {
disabled: boolean;
block: boolean;
vertical: boolean;
}>;
export default _default;