1.5.2 ā€¢ Published 4 years ago

@welcome-ui/growl v1.5.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Welcome UI

Welcome to the Welcome UI library create 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>
    )
  }