A component for styling textual content.
The ui-text
package contains the following:
npm install @instructure/ui-text
---
type: code
---
import React from 'react'
import { Text } from '@instructure/ui-text'
const MyText = () => {
return (
<Text>
Whatever you want to display goes here.
</Text>
)
}