New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

avent-ui

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avent-ui

The best UI library for Typescript and React

latest
Source
npmnpm
Version
1.0.19
Version published
Maintainers
1
Created
Source

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/**/dist/**/*.{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
Flip Ham Menu
Button

List of Hooks :

useRenderEnv
useScreenDimensions

List of Context :

PageTransitionContext

List of Utils :

cn

Keywords

ui

FAQs

Package last updated on 01 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts