neomorphicwebcomponents
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

NeomorphicWebComponents

A web component library for creating a neomorphic UI / UX

Getting Started

Prerequisites

install package

  • npm
npm i NeomorphicComponents

Usage

vanilla js example

let dropDown = document.createElement("neo-dropdown");

dropDown.innerHTML= "gender";

dropDown.options = [{key:0,value:"male"},{key:1,value:"female"},{key:2,value:"other"}];

    
document.body.appendChild(dropDown)

react example

import {NeoInput} from 'NeomorphicComponents/lib/main'

function App() {
  return (
    <div className="App">
      <neo-input></neo-input>
    </div>
  );
}

export default App;

Readme

Keywords

none

Package Sidebar

Install

npm i neomorphicwebcomponents

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

30.5 kB

Total Files

13

Last publish

Collaborators

  • aleksandra_amashukeli