New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@cebus/react-divider

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cebus/react-divider

The divider helps separate content in a site.

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
2
Created
Source

Divider

The Divider helps separate content in a site.

Use

  • Install the @cebus/react-divider component.

Using NPM

npm install @cebus/react-divider

Using Yarn

yarn add @cebus/react-divider
  • Install the @cebus/react-provider and our theme tokens from @cebus/react-theme

  • 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>
  )
}
  • 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.

FAQs

Package last updated on 08 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts