@novely/solid-renderer
Version:
Renderer for @novely/core powered by SolidJS
15 lines (14 loc) • 358 B
TypeScript
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 };