npm

@cebus/react-text
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

Text

The Text control standardizes font styling across a webpage.

Use

  1. Install the @cebus/react-text component.

Using NPM

npm install @cebus/react-text

Using Yarn

yarn add @cebus/react-text
  1. Install the @cebus/react-provider and our theme tokens from @cebus/react-theme

  2. Set up the provider in your app:

import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'

const MyApp = () => {
  return (
    <Provider theme={webLightTheme}>
    <Provider>
  )
}
  1. Integrate the Link component.
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
import { Text } from '@cebus/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.

Readme

Keywords

none

Package Sidebar

Install

npm i @cebus/react-text

Weekly Downloads

0

Version

0.0.3

License

MIT

Unpacked Size

184 kB

Total Files

350

Last publish

Collaborators

  • czearing
  • pongobuild