A lightweight, typed UI component library built with React and TypeScript.
You can see a live preview of the components in https://maverickchampi-components.vercel.app/
npm install @maverickchampi/componentsimport { Button, Input } from "@maverickchampi/components";
import "@maverickchampi/components/dist/index.css";
function App() {
return (
<form>
<Input label="Email" type="email" />
<Button variant="primary">Submit</Button>
</form>
);
}Requires React 18 (not React 19 yet):
{
"react": ">=18",
"react-dom": ">=18"
}MIT