@instructure/ui-view
v10.10.0
Published
A component for basic styles including spacing, sizing, borders, display, positioning, and focus states.
Downloads
51,011
Maintainers
Keywords
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
npm install @instructure/ui-view
Usage
---
type: code
---
import React from 'react'
import { View } from '@instructure/ui-view'
const MyView = () => {
return (
<View as="div" padding="small" borderWidth="small">
Hello World
</View>
)
}