UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

24 lines (21 loc) 458 B
/** * * InputOtp is used to enter one time passwords. * * [Live Demo](https://www.primevue.org/inputotp/) * * @module inputotpstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum InputOtpClasses { /** * Class name of the root element */ root = 'p-inputotp', /** * Class name of the input element */ pcInput = 'p-inputotp-input' } export interface InputOtpStyle extends BaseStyle {}