Skip to content
/ pymui Public

PYM UI is a React component library for building modern user interfaces faster 🚀

License

Notifications You must be signed in to change notification settings

pymui/pymui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material You

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.

🚧 This project is under heavy construction 🚧

⚠️ Not ready for production use ⛔

GitHub npm (tag) npm (scoped) npm

Installation

Material You

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

Getting Started

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>;
};