UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

10 lines (8 loc) 154 B
export interface IInputNumberOptions { min?: number; max?: number; step?: number; } export interface IInputNumber { options?: IInputNumberOptions; }