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

# @ray-js/ty-steps

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

> 步骤条

## Installation

```sh
$ npm install @ray-js/ty-steps
# or
$ yarn add @ray-js/ty-steps
```

## Usage

```tsx
import Steps from '@ray-js/ty-steps';
export default () => (
  <Steps value={0}>
    <Steps.Step>Step 1</Steps.Step>
    <Steps.Step>Step 2</Steps.Step>
    <Steps.Step>Step 3</Steps.Step>
    <Steps.Step>Step 4</Steps.Step>
  </Steps>
);
```