@burrow-ui/react
v0.1.8
Published
Burrow UI — single-import umbrella package re-exporting all components, tokens, and the MonoProvider
Downloads
714
Maintainers
Readme
@burrow-ui/react
Single-import umbrella package for the entire Burrow UI library. Re-exports
every component, type, theme token and the MonoProvider.
yarn add @burrow-ui/react react react-dom styled-componentsimport {Button, COLORS, Modal, MonoProvider} from "@burrow-ui/react";
export function App() {
return (
<MonoProvider>
<Button color="primary">Click</Button>
</MonoProvider>
);
}Prefer per-component imports (@burrow-ui/button, @burrow-ui/modal, …) for
finer-grained tree-shaking — this umbrella is the ergonomic default.
