@novely/solid-renderer
Version:
Renderer for @novely/core powered by SolidJS
15 lines (14 loc) • 357 B
TypeScript
import type { FlowComponent, JSX } from 'solid-js';
type NativeSelectProps = Omit<JSX.SelectHTMLAttributes<HTMLSelectElement>, 'class' | 'id'>;
type SelectProps = NativeSelectProps & {
/**
* Icon #path
*/
icon: string;
/**
* Label
*/
label: string;
};
declare const Select: FlowComponent<SelectProps>;
export { Select };