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