18 lines
345 B
TypeScript
18 lines
345 B
TypeScript
/**
|
|
*
|
|
* InputOtp is used to enter one time passwords.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/inputotp/)
|
|
*
|
|
* @module inputotpstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
|
|
|
export enum InputOtpClasses {
|
|
root = 'p-inputotp',
|
|
pcInput = 'p-inputotp-input'
|
|
}
|
|
|
|
export interface InputOtpStyle extends BaseStyle {}
|