1.0.19 • Published 3 years ago

react-neon-ui v1.0.19

Weekly downloads
2
License
MIT
Repository
-
Last release
3 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

3 years ago

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.2

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago