vcc-ui
Version:
VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.
28 lines (24 loc) • 1.02 kB
Markdown
Arrows (also referred to as chevrons) are typically used together with buttons, links, dropdowns and other action oriented components to indicate a sense of direction.
### Example
```jsx live=true
<React.Fragment>
<Arrow />
<Arrow size={20} />
<Arrow size={30} />
<Arrow size={40} />
<Arrow direction="left" color="seagreen" />
<Arrow direction="left" color="seagreen" size={20} />
<Arrow direction="left" color="seagreen" size={30} />
<Arrow direction="left" color="seagreen" size={40} />
<Arrow direction="up" color="palevioletred" />
<Arrow direction="up" color="palevioletred" size={20} />
<Arrow direction="up" color="palevioletred" size={30} />
<Arrow direction="up" color="palevioletred" size={40} />
<Arrow direction="down" color="cornflowerblue" />
<Arrow direction="down" color="cornflowerblue" size={20} />
<Arrow direction="down" color="cornflowerblue" size={30} />
<Arrow direction="down" color="cornflowerblue" size={40} />
</React.Fragment>
```
### Changelog
- *Added in version 0.0.45*