primevue-mirror/components/lib/inputotp/style/InputOtpStyle.d.ts

24 lines
454 B
TypeScript
Raw Normal View History

/**
*
* InputOtp is used to enter one time passwords.
*
* [Live Demo](https://www.primevue.org/inputotp/)
*
* @module inputotpstyle
*
*/
2024-02-21 18:38:16 +00:00
import { BaseStyle } from '../../base/style/BaseStyle';
export enum InputOtpClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-inputotp',
2024-05-22 13:52:02 +00:00
/**
* Class name of the input element
*/
pcInput = 'p-inputotp-input'
}
2024-02-21 18:38:16 +00:00
export interface InputOtpStyle extends BaseStyle {}