Material You is a React component library for building modern user interfaces faster.
- Material You is a collection of React components that features my implementation of Material 3 design system.
- With Material You you can easily build user interfaces that are modern, fast, simple, and beautiful.
Material You is available as an npm package.
📔 Note: Material You is not production ready yet. It is under heavy construction. Do not use it in production.
npm install @biswarup35/material-you
or
yarn add @biswarup35/material-you
Here's an example of how to use Material You:
import React from "react";
import { Button } from "@biswarup35/material-you";
const App = () => {
return <Button variant="filled">Hello World!</Button>;
};