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.
24 lines (20 loc) • 432 B
Markdown
A block component is a `<div>` with `display: block`, and a starting point for building your own custom block UI components
```jsx live=true
<Block
as="h1"
extend={{
fontSize: "24px",
padding: "20px",
margin: "0",
color: "white",
textShadow: "1px 1px 1px green",
fontFamily: "Helvetica Neue, Arial",
background: "darkseagreen"
}}
>
Hello Block
</Block>
```
- *Added in version 0.0.45*