rbt-icons
v0.1.6
Published
A customizable icon library for your react js or next js web applications.
Maintainers
Readme
RBT Icons
Welcome to RBT Icons! This project provides a collection of customizable icons that you can easily integrate into your web applications. The library is live and accessible through the link below.
Live Link
You can view the live version of the RBT Icons Library here:
RBT Icons Live Link
Features
- A wide range of icons for various uses.
- Simple and easy-to-use integration.
- Customizable styles and sizes.
- Responsive and mobile-friendly.
- Lightweight and fast.
Installation
To use the icons in your project, you can install the library using either npm or yarn:
# Using npm
npm install rbt-icons
# Using yarn
yarn add rbt-icons
import { Folder, House, VideoCamera } from 'rbt-icons';
function App() {
return (
<div>
<Folder />
<House />
<VideoCamera />
</div>
);
}
export default App;