claude-web/node_modules/primevue/inputotp/style/index.d.ts

24 lines
458 B
TypeScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* 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 {}