Package Exports
- @instructure/ui-text
Readme
category: packages
ui-text
A component for styling textual content.
Components
The ui-text package contains the following:
Installation
yarn add @instructure/ui-textUsage
---
example: false
---
import React from 'react'
import { Text } from '@instructure/ui-text'
const MyText = () => {
return (
<Text>
Whatever you want to display goes here.
</Text>
)
}