Skip to content

hixme/hixme-ui

Repository files navigation

hixme-ui - HUI

lerna Build Status

Another React component library, built to facilitate the Hixme ecosystem. We hope you enjoy your time here.

Website

Getting started

Install the theme and your needed components.

npm install --save @hixme-ui/theme @hixme-ui/container @hixme-ui/title

Add the theme via the theme provider and begin using HUI components

import { ThemeProvider } from '@hixme-ui/theme'
import Container from '@hixme-ui/container'
import Title from '@hixme-ui/title'

const AppContainer = () => (
  <ThemeProvider withGlobal>
    <Container padding='10px'>
      <Title jumbo primary>Welcome to your App</Title>

      <Container background='#efefef'>
        This is going to be a fun ride
      </Container>
    </Container>
  </ThemeProvider>
)

Theming

HUI Components

Built With

Contributing

Please read CONTRIBUTING.md for project development notes.