Skip to content
forked from WTTJ/welcome-ui

Customizable design system of @WTTJ with react • styled-components • styled-system • reakit

License

Notifications You must be signed in to change notification settings

rehmoe/welcome-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome UI

Welcome to the Welcome UI library created by Welcome to the jungle, a customizable design system with react • styled-components • styled-system and reakit.

Here you'll find all the core components you need to create a delightful webapp.

🌴 Discover all the components


License Code formating Code style PRs Welcome Conventional Commits


Install

npm install welcome-ui

or

yarn add welcome-ui

Import library & Theme

Getting started

import React from 'react'
import { ThemeProvider } from '@xstyled/styled-components'
import { createTheme, GlobalStyle } from '@welcome-ui/core'
import { Text } from '@welcome-ui/text'

const theme = createTheme()

export default function App() {
  // Wrap your component with ThemeProvider
  return (
    <ThemeProvider theme={theme}>
      <>
        <GlobalStyle />
        <Text variant="h1">Welcome!</Text>
        <Text>Here is how you can start with welcome-ui :)</Text>
      </>
    </ThemeProvider>
  )
}

About

Customizable design system of @WTTJ with react • styled-components • styled-system • reakit

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.3%
  • CSS 1.7%