- Minimal UI design style.
- Simple and extensible component API.
- Written in TypeScript with predictable static types.
- Provides a dark mode theme.
- Powerful theme customization based on CSS-in-JS.
- Compatible with SSR(Server Side Rendering).
- Unit testing with 100% coverage.
pnpm add raw-ui
npm install raw-ui --save
Wrap the root of your application with RawUIProvider
, and then you can use any component
import { RawUIProvider, Button } from 'raw-ui';
const App = () => (
<RawUIProvider>
<Button>Default</Button>
</RawUIProvider>
);