sajeeui
v1.3.0
Published
Testing Custom NPM packages
Downloads
4
Readme
SajeeUI
Welcome to SajeeUI!
Installation :computer:
Easily install SajeeUI using npm:
npm i sajeeui
Usage :briefcase:
- Importing into your components:
- Import the entire library:
import "sajeeui";
- Import specific components:
import { *ComponentName* } from "sajeeui";
- Import the entire library:
Components
Button
Importing:
import { Button } from "sajeeui";
Usage:
<Button btnLabel="ButtonName" />
Labeling:
<Button btnLabel="Button" />
Button Colors:
<Button btnLabel="ButtonLabel" btnColor="success" />
<Button btnLabel="ButtonLabel" btnColor="success"/> <Button btnLabel="ButtonLabel" btnColor="danger"/> <Button btnLabel="ButtonLabel" btnColor="primary"/> <Button btnLabel="ButtonLabel" btnColor="alert"/> <Button btnLabel="ButtonLabel" btnColor="girly"/>
Enable Outline:
<Button btnLabel="ButtonLabel" btnOutline />
Button Outline Colors:
<Button btnLabel="ButtonLabel" btnOutline Outline="primary" />
<Button btnLabel="ButtonLabel" btnOutline Outline="success"/> <Button btnLabel="ButtonLabel" btnOutline Outline="danger"/> <Button btnLabel="ButtonLabel" btnOutline Outline="primary"/> <Button btnLabel="ButtonLabel" btnOutline Outline="alert"/> <Button btnLabel="ButtonLabel" btnOutline Outline="girly"/>