English | [简体中文](./README-zh_CN.md)


# @ray-js/components-ty-keyboard

[![latest](https://img.shields.io/npm/v/@ray-js/components-ty-keyboard/latest.svg)](https://www.npmjs.com/package/@ray-js/components-ty-keyboard) [![download](https://img.shields.io/npm/dt/@ray-js/components-ty-keyboard.svg)](https://www.npmjs.com/package/@ray-js/components-ty-keyboard)

> Customize the numeric keyboard

## Installation

```sh
$ npm install @ray-js/components-ty-keyboard
// or
$ yarn add @ray-js/components-ty-keyboard
```

## Usage

### CustomKeyboard Demo

```tsx
import CustomKeyboard from '@ray-js/components-ty-keyboard';

    <CustomKeyboard
        inputContainerStyle={{
          marginLeft: '56rpx',
          marginTop: '16rpx',
          marginBottom: '56rpx'
        }}
        onChange={(value) => console.log('onChange value =====>', value)}
        onConfirm={(value) => console.log('onConfirm value ====>', value)}
      />;
```