@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
26 lines (22 loc) • 984 B
Markdown
# StopoverArrow
To implement StopoverArrow component into your project you'll need to add the import:
```jsx
import StopoverArrow from "@kiwicom/orbit-components/lib/StopoverArrow";
```
After adding import into your project you can use it simply like:
```jsx
<StopoverArrow stops="2" dataTest="test" />
```
## Props
Table below contains all types of the props available in StopoverArrow component.
| Name | Type | Default | Description |
| :------------ | :------------------------------- | :-------------- | :------------------------------- |
| dataTest | `string` | | Optional prop for testing purposes.
| stops | [`enum`](#enum) | `"0"` | Specify how many stops should the component render.
### enum
| stops |
| :---------------- |
| `"0"` |
| `"1"` |
| `"2"` |
| `"3"` |