# Pin Input
The PinInupt component is optimized for entering sequences of digits. The most
common application is for entering single-use security codes. It is optimized
for entering digits quickly.
## Installation
```sh
yarn add @chakra-ui/pin-input
or
npm i @chakra-ui/pin-input
```
## Import component
```jsx
import {
PinInput,
PinInputField,
usePinInput,
usePinInputField,
} from "@chakra-ui/pin-input"
```
## Usage
Chakra UI exports two primary components, `PinInput` and `PinInputField` to
compose a PinInput component. Chakra UI also provides hooks to can create a
custom PinInput component.
```jsx