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.

13 lines (12 loc) 284 B
import type { CSSProperties } from 'vue'; export interface Classes { [key: string]: boolean; } export type Styles = CSSProperties; export interface SvgNode { name: string; type: string; value: string; attributes: Record<string, string>; children: SvgNode[]; }