@instructure/ui-text
v10.10.0
Published
A component for styling textual content
Downloads
26,396
Maintainers
Keywords
Readme
category: packages
ui-text
A component for styling textual content.
Components
The ui-text
package contains the following:
Installation
npm install @instructure/ui-text
Usage
---
type: code
---
import React from 'react'
import { Text } from '@instructure/ui-text'
const MyText = () => {
return (
<Text>
Whatever you want to display goes here.
</Text>
)
}