Skip to content
forked from uber/baseweb

A React Component library implementing the Base UI design

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE-HEAD
Notifications You must be signed in to change notification settings

jonnydubowsky/baseui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BASE UI

Join Slack We are hiring

Sauce Test Status

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

Build status

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

Usage

Add baseui to your project:

# using yarn
yarn add baseui

# using npm
npm install baseui
import {LightTheme, ThemeProvider, styled} from 'baseui';
import {StatefulInput} from '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

Contributing

Contributing

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

About

A React Component library implementing the Base UI design

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE-HEAD

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.4%
  • Other 0.6%