legion-vue-core
Version:
25 lines (23 loc) • 492 B
TypeScript
import { SIZE, STATUS } from '../../utilities/constant';
export interface PinInputProps {
/**
* The value of the pin input
*/
modelValue: string;
/**
* Sets the size of the component
*/
size?: SIZE;
/**
* Sets the variant of the component
*/
variant?: 'outline' | 'inline';
/**
* Sets the status of the component
*/
status?: STATUS;
/**
* Sets the length of the pin input fields
*/
length?: number;
}