@temporg/ui-view
v99.10.0
Published
A component for basic styles including spacing, sizing, borders, display, positioning, and focus states.
Downloads
40
Readme
category: packages
ui-view
A component for basic styles including spacing, sizing, borders, display, positioning, and focus states.
Components
The ui-view
package contains the following:
Installation
yarn add @temporg/ui-view
Usage
---
example: false
---
import React from 'react'
import { View } from '@temporg/ui-view'
const MyView = () => {
return (
<View as="div" padding="small" borderWidth="small">
Hello World
</View>
)
}