A design system React library
The library is based on MUI Core
npm:
npm install @getsoren/design-systembun:
bun add @getsoren/design-systemyarn:
yarn add @getsoren/design-systempnpm:
pnpm add @getsoren/design-systemPut <ThemeProvider> around your application.
Custom theme can be provided as prop theme={YOUR_CUSTOM_THEME}
import { Button, ThemeProvider } from "@getsoren/design-system";
const App = () => (
<ThemeProvider>
<Button>Text</Button>
</ThemeProvider>
);
export default App;Package are available in @getsoren/design-system/{package}
| Package | Description |
|---|---|
| colors | This package contains material design colors. |
Read the contributing guide to learn about our process.