baseui
Version:
A React Component library implementing the Base design language
27 lines (26 loc) • 743 B
TypeScript
import React from 'react';
import type { StatefulPinCodeProps } from './types';
declare function StatefulPinCode(props: StatefulPinCodeProps): React.JSX.Element;
declare namespace StatefulPinCode {
var defaultProps: {
'aria-label': string;
'aria-labelledby': any;
'aria-describedby': any;
autoComplete: string;
autoFocus: boolean;
disabled: boolean;
error: boolean;
id: any;
name: any;
onChange: () => void;
overrides: {};
placeholder: string;
positive: boolean;
required: boolean;
size: "default";
manageFocus: boolean;
values: string[];
mask: boolean;
};
}
export default StatefulPinCode;