vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
13 lines (12 loc) • 331 B
TypeScript
import { InjectionKey } from 'vue';
import { ComponentSize } from '@vexip-ui/config';
export interface GroupState {
size: ComponentSize;
itemTag: string;
activated: boolean;
round: boolean;
circle: boolean;
block: boolean;
loading: boolean;
}
export declare const GROUP_STATE: InjectionKey<GroupState>;