1.2.3 • Published 11 months ago

ui_element v1.2.3

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

npm-package

asd ui_element is a package that contains all the necessary animations required by a user. It covers different types of loaders, buttons, and scroll watchers, etc.

Table of Contents

  1. card
  2. footer
  3. form
  4. navbar

Installation

To install the package, use the command:

npm i ui_element

How to Import

The best way to import components of ui_element is through direct import of the modules.

import {card,footer,form,navbar } from 'ui_element';

Example to import components are as follows:

card

import {card} from 'ui_element'
const App=()=>{
  return(
 <>
    <card/> 
 </>
  )

}
export default App

footer

import {footer} from 'ui_element'
const App=()=>{
  return(
 <>
 <footer/>     
 </>
  )

}
export default App

form

import {form} from 'ui_element'
const App=()=>{
  return(
 <>
 <form/>    
 </>
  )

}
export default App

Navbar

import {navbar} from 'ui_element'
const App=()=>{
  return(
 <>
 <navbar/>
 </>
  )

}
export default App
1.2.3

11 months ago

1.2.0

11 months ago

1.0.0

11 months ago