1.0.19 • Published 4 years ago

react-neon-ui v1.0.19

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

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
1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.2

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago