lionzcss
v2.0.0
Published
A light-weight and Great UI React.js component library
Downloads
18
Maintainers
Readme
Lionzcss
The largest components library ready to use for Better Design ! Build rich, interactive web applications quickly, with high quality design and results Join our growing community of developers using lionzcss
Collection of professionally designed, pre-built, fully responsive HTML snippets you can drop into your projects
Quick start
Several quick start options are available:
- Download the latest release
- Clone the repo:
git clone https://github.com/anasbehhari/lionzcss-library.git
- Install with npm:
npm install lionzcss
- Install with yarn:
yarn add lionzcss
- Include with CDN: CSS:
https://lionzcss-api.herokuapp.com/api/css/lionzcss
Sass:https://lionzcss-api.herokuapp.com/api/scss/lionzcss
Read the Getting started page for information on the framework contents, templates and examples, and more.
How to use
run the command
npm install lionzcss
Then import your components you can see all components here
import { Message, Alert } from "lionzcss";
function App() {
return (
<>
<Message type="success">
<b> VERY IMPORTANT</b> : please make sure to double check that the form
below has all the correct information
</Message>
<Alert
type="error"
title="Please make sure to eliminate All special carachters"
>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure vitae ab
illum fugit error, laborum iusto cumque, ratione voluptates quod
maiores eos, harum non alias. Qui deleniti dolore itaque corrupti.
</p>
</Alert>
</>
);
}
export default App;
CDN Archicture
By using our API you'll have access to diffrent type of files .css
or .scss
and .js
.
here down below you'll see the Archicture which shows how to use our API
lionzcss/
├── css/
│ ├── cards.css
│ ├── popups.css
│ ├── buttons.css
│ ├── alerts.css
│ ├── tables.css
└── scss/
│ ├── cards.scss
│ ├── popups.scss
│ ├── buttons.scss
│ ├── alerts.scss
│ ├── tables.scss
└── js/
│ ├── cards.js
│ ├── popups.js
│ ├── buttons.js
│ ├── alerts.js
│ ├── tables.js
We provide compiled CSS and JS , as well as compiled and minified CSS and JS + You can import or include your component styling only instead of importing one .css or .scss,.js file :
@import "https://lionzcss-api.herokuapp.com/api/css/${component_name}";
@import "https://lionzcss-api.herokuapp.com/api/scss/${component_name}";
<script src="https://lionzcss-api.herokuapp.com/api/js/${component_name}"></script>
Creators
Anas Behhari
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Copyright and license
Code and documentation copyright 2021-2022 the lionzcss Authors. Code released under the MIT License.