UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

9 lines (8 loc) 260 B
import type { Ref } from 'vue'; export interface ComponentSizeProps { componentName: string; currentSize: Ref<string | undefined>; } export declare function useComponentSize(props: ComponentSizeProps): { size: import("vue").ComputedRef<string>; };