Package Exports
- baseui/checkbox
- baseui/checkbox/index
- baseui/input
- baseui/input/index
- baseui/menu
- baseui/modal
- baseui/modal/index
- baseui/popover
- baseui/radio
- baseui/radio/index
- baseui/select
- baseui/select/index
- baseui/styles
- baseui/textarea
- baseui/textarea/index
- baseui/themes
- baseui/tooltip
- baseui/tooltip/index
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (baseui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
BASE UI
Currently baseui is under active development, and may not be ready for production use.
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>
);
}