UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

16 lines (12 loc) 281 B
import { 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[] }