1.0.9 • Published 7 months ago

avent-ui v1.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Avent UI

Avent UI is a React and TypeScript-based UI component library built on top of Tailwind CSS featuring beautiful designs and seamless animations. Built with modern web development in mind, it simplifies creating stunning user interfaces for your applications while offering full TypeScript support for a robust development experience.

📦 Installation

1. Install Avent UI via npm:

npm install avent-ui

2 . Tailwind CSS setup

AventUI is built on top of Tailwind CSS, so you need to install Tailwind CSS first. You can follow the official installation guide to install Tailwind CSS. Then you need to add the following code to your tailwind.config.js file:

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
    // make sure it's pointing to the ROOT node_module
    "./node_modules/avent-ui/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

3. Import any Component

import React from 'react';
import { Magneto } from 'avent-ui';

4. Use it Anywhere you want

<Magneto>
    That simple!!
</Magneto>

📦 Individual Component Installation

Don't want to install the entire library ?

We gotchu! If you only need a particular component, you can install it individually to save bundle size:

Install the Component with @avent-ui namespace :

npm install @avent-ui/component-name

and follow the regular installation instruction

Note: Each component comes with unique properties and usage patterns. For detailed information and examples, please refer to the documentation specific to each component.

List Of Components :

Magneto Ham Menu

List of Hooks :

useRenderEnv

1.0.9

7 months ago

1.0.8

7 months ago

1.0.7

8 months ago

1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.3

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago