UNPKG

theme-editor-svelte

Version:
8 lines (7 loc) 258 B
import type { ThemeVariable } from '../../../types.js'; interface Props { variable: ThemeVariable; } declare const ColorEntry: import("svelte").Component<Props, {}, "variable">; type ColorEntry = ReturnType<typeof ColorEntry>; export default ColorEntry;