UNPKG

react-wired-elements

Version:

Wired Elements as React components. TypeScript types included.

27 lines (25 loc) 345 B
export const inputTypes = [ 'button', 'checkbox', 'color', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', 'time', 'url', 'week', ] as const; export type InputType = typeof inputTypes[number];