0.0.2 • Published 9 months ago

modern-react-ui v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

Modern React UI

A tailwindcss powered modern react ui components library

Installation

Install with npm

  npm install modern-react-ui

Install with yarn

  yarn add modern-react-ui

Install with pnpm

  pnpm add modern-react-ui

Examples

import { Clickable } from 'modern-react-ui'

function App() {
  return (
    <Clickable
      size="lg"
      text="Click Me"
      onClick={() => {
        console.log("hi");
      }}
   />)
}