baseui
Version:
A React Component library implementing the Base design language
9 lines (8 loc) • 483 B
TypeScript
import type { StatefulPinCodeContainerProps } from './types';
export { default as PinCode } from './pin-code';
export { default as StatefulPinCodeContainer } from './stateful-pin-code-container';
export { default as StatefulPinCode } from './stateful-pin-code';
export { SIZE } from '../input';
export * from './types';
/** @deprecated use StatefulPinCodeContainerProps instead. To be removed in future versions.*/
export type StatefulContainerProps = StatefulPinCodeContainerProps;