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) 265 B
import type { Ref } from 'vue'; export interface ComponentColorProps { componentName: string; currentColor: Ref<string | undefined>; } export declare function useComponentColor(props: ComponentColorProps): { color: import("vue").ComputedRef<string>; };