UNPKG

theme-editor-svelte

Version:
7 lines (6 loc) 272 B
import type { HTMLInputAttributes } from 'svelte/elements'; interface Props extends Omit<HTMLInputAttributes, 'type'> { } declare const ColorInput: import("svelte").Component<Props, {}, "value">; type ColorInput = ReturnType<typeof ColorInput>; export default ColorInput;