1.1.0 • Published 2 years ago

@biswarup35/material-you v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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.

:construction: This project is under heavy construction :construction:

:warning: Not ready for production use :no_entry:

license Commitizen friendly semantic-release: angular

Installation

Material You

Material You is available as an npm package.

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