1.2.1 • Published 5 months ago

react-iconiex-icons v1.2.1

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

Iconiex

Welcome to Iconiex, your go-to marketplace for a wide variety of beautifully designed SVG icons. Whether you're developing a web application or creating stunning graphics, Iconiex has the perfect icons to enhance your project.

Table of Contents

Installation

You can easily install Iconiex using either npm or yarn. Run one of the following commands in your project directory:

Using npm:

npm install react-iconiex-icons

Using yarn:

yarn add react-iconiex-icons

Overview

Iconiex offers a rich collection of high-quality icons designed to meet the needs of modern web applications. With our user-friendly React components, you can easily integrate icons into your projects and customize them as needed.

Features

  • Wide Variety of Icons: Explore an extensive library of icons suitable for different applications and styles.
  • Easy to Use: Simple installation and usage, making it accessible for all developers.
  • Customizable: Each icon component supports customization via className and style props.
  • Responsive Design: Icons are designed to scale beautifully on any screen size.

Usage

Simple usages example

import { IxArrowRigth } from "react-iconiex-icons";

function App() {
  return (
    <div className="App">
      <IxArrowRigth />
    </div>
  );
}

export default App;

Using className for dynamic style for tailwindcss & bootstrap

import { IxArrowRigth } from "react-iconiex-icons";

function App() {
  return (
    <div className="App">
      <IxArrowRigth className="text-red-500 text-4xl" />
    </div>
  );
}

export default App;

Using inline style

import { IxArrowRigth } from "react-iconiex-icons";

function App() {
	return (
	<div className="App">
	<IxArrowRigth style={{color:"red", font-size:"32px"}} />
	</div>
	);
}

export default App;

Change style with custom class name

<IxArrowRigth className="my-icon" />
.my-icon {
  color: "red";
  font-size: "32px";
  /* add another styles  */
}
1.2.0

7 months ago

1.0.2

8 months ago

1.0.8

8 months ago

1.0.7

8 months ago

1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.2.1

5 months ago

1.0.10

8 months ago

1.1.10

8 months ago

1.0.1

9 months ago

1.0.0

9 months ago