1.0.0 • Published 8 months ago

ionetplus v1.0.0

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

This library is customized by divya devar.

ionet plus

// with npm
npm install ionetplus

// with yarn
yarn add ionetplus

Styles

//theme
import 'ionetplus/resources/themes/lara-light-indigo/theme.css';

//core
import 'ionetplus/resources/ionetplus.min.css';

Each ionetplus theme has its own font family so it is suggested to apply it to your application for a unified look.

body {
    font-family: var(--font-family);
}

Usage

Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.

Module

//import { ComponentName } from 'ionetplus/{componentname}';
import { Dialog } from 'ionetplus/dialog';
import { Accordion, AccordionTab } from 'ionetplus/accordion';