Skip to content

archx3/baseui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Currently baseui is under active development, and may not be ready for production use.

BASE UI

Build status

baseui is a design system comprised of modern, responsive, living components.

Usage

Add baseui to your project:

# using yarn
yarn add @uber/baseui

# using npm
npm install @uber/baseui
import {LightTheme, ThemeProvider, styled} from '@uber/baseui';
import {StatefulInput} from '@uber/baseui/input';

const Centered = styled('div', {
  display: 'flex',
  justifyContent: 'center',
  alignItems: 'center',
  height: '100%',
});

export default function Hello() {
  return (
    <ThemeProvider theme={LightTheme}>
      <Centered>
        <StatefulInput />
      </Centered>
    </ThemeProvider>
  );
}

Docs

Docs by Storybook

Contributing

Contributing

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.9%
  • Other 0.1%