UNPKG

@novely/solid-renderer

Version:
15 lines (14 loc) 358 B
import type { JSX, VoidComponent } from 'solid-js'; type NativeInputProps = Omit<JSX.InputHTMLAttributes<HTMLInputElement>, 'class' | 'id' | 'type'>; type RangeProps = NativeInputProps & { /** * Icon #path */ icon: string; /** * Label */ label: string; }; declare const Range: VoidComponent<RangeProps>; export { Range };