@pongo-ui/react-text
v0.0.18
Published
A Text control that standardizes font styling across a webpage.
Downloads
6
Readme
Text
The Text control standardizes font styling across a webpage.
Use
- Install the @pongo-ui/react-text component.
Using NPM
npm install @pongo-ui/react-text
Using Yarn
yarn add @pongo-ui/react-text
Install the @pongo-ui/react-provider and our theme tokens from @pongo-ui/react-theme
Set up the provider in your app:
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}
- Integrate the Link component.
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
import { Text } from '@pongo-ui/react-link'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Text>Hello World</Text>
<Provider>
)
}
API
To learn more about the Text API take a look at the Text Interface file.