Skip to content

jpalacio0612/react-neon-ui

Repository files navigation

Chakra logo

React component library based on styled components 🚀

MIT License NPM version

Install

For npm users:

  $ npm install react-neon-ui styled-components

For Yarn users:

  $ yarn add react-neon-ui styled-components

Links

Documentation click here

Github Repository

Demo Repository

Example

import React from 'react'
import { Button } from 'react-neon-ui'

const App = () => (
  <div>
    <Button>Click Here</Button>
  </div>
)

export default App

Theme Support

We have two default themes "neon" and "cyberpunk" but you can use your custom theme through an javascript object

import React from 'react'
import { ThemeProvider } from 'styled-components'
import { Button } from 'react-neon-ui'
import { cyberpunk } from 'react-neon-ui'

const App = () => (
  <div>
    <ThemeProvider theme={cyberpunk}>
      <Button>Click Here</Button>
    </ThemeProvider>
  </div>
)

export default App

Explore with storybook

You can clone the repository and use the storybook to see examples of each component, modify the repository, and bring in new ideas.

  $ npm run storybook

or

  $ yarn storybook