@lightsparkdev/ui
v1.1.15
Published

Downloads
262
Keywords
Readme
Lightspark UI
This package contains React components and design system utilities from Lightspark UI.
Getting started
$ npm install @lightsparkdev/uiimport { LightsparkProvider, Button } from "@lightsparkdev/ui/src/components";
function App() {
return (
<LightsparkProvider>
<Button text="Button" />
</LightsparkProvider>
);
}