Simple Widgets is a UI component library built using Angular and it is available as a NPM package to download. Currently the library has a palette of 6 components and few more will be added in the future. All the components encapsulates the core logic and provides a simple API for the consumer to work with it.
This library has a hosted Storybook docs, which serves as a playground to interact with components and as a documentation to learn about their usage.
npm install ngx-simple-widgetsTo use a particular component or a service, the respective module needs to be imported into the working module.
import { SwButtonModule } from "ngx-simple-widgets";
imports: [SwButtonModule];<button sw-primary-button>Click me!</button>