0.0.3 • Published 2 years ago

@cebus/react-divider v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Divider

The Divider helps separate content in a site.

Use

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

Using NPM

npm install @cebus/react-divider

Using Yarn

yarn add @cebus/react-divider
  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 Button component.
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
import { Divider } from '@cebus/react-divider'

const MyApp = () => {
  return (
    <Provider theme={webLightTheme}>
      <Divider>Hello World</Divider>
    <Provider>
  )
}

API

To learn more about the Divider API take a look at the Divider Interface file.