UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

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 {}