@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
121 lines (83 loc) • 3.3 kB
Markdown
<div align="center">
<img alt="react simple icons" src="https://github.com/icons-pack/react-simple-icons/blob/main/docs/images/svg/react-simple-icons.svg" width="150" />
This package provides the [Simple Icons 15.1.0](https://github.com/simple-icons/simple-icons/releases/tag/15.1.0)
packaged as a set of [React](https://facebook.github.io/react/) components.
<a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
<img src="https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square" alt="www.npmjs.com!" />
</a>
<a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
<img src="https://img.shields.io/npm/dw/@icons-pack/react-simple-icons?color=087BB4&style=flat-square" alt="downloads" />
</a>
<a href="https://github.com/icons-pack/react-simple-icons/blob/canary/LICENSE" target="_blank">
<img src="https://img.shields.io/npm/l/@icons-pack/react-simple-icons?color=008660&style=flat-square" alt="licence" />
</a>
</div>
Install the package in your project directory with:
```sh
// with yarn
yarn add @icons-pack/react-simple-icons
// with npm
npm add @icons-pack/react-simple-icons
// with pnpm
pnpm add @icons-pack/react-simple-icons
// with bun
bun add @icons-pack/react-simple-icons
```
> TypeScript Support
You can use [simpleicons.org](https://simpleicons.org) to find a specific icon. When importing an icon, keep in mind
that the names of the icons are [upperCamelCase](https://github.com/samverschueren/uppercamelcase) , for instance:
- [`Material Design`](https://simpleicons.org/?q=material) is exposed as
`{ SiMaterialdesign } from @icons-pack/react-simple-icons`
- [`azure devOps`](https://simpleicons.org/?q=azure%20devOps) is exposed as
`{ SiAzuredevops } from @icons-pack/react-simple-icons`
[ ](https://codesandbox.io/s/interesting-yonath-x7o7g?file=/src/App.js)
```jsx
import { SiReact } from '@icons-pack/react-simple-icons';
function BasicExample() {
return <SiReact color='#61DAFB' size={24} />;
}
```
`@icons-pack/react-simple-icons` provides a default title referring to the component name
> The `<title>` element provides an accessible, short-text description of any SVG container element or graphics element.
```jsx
import { SiReact } from '@icons-pack/react-simple-icons';
// title default "React"
function ChangeTitle() {
return <SiReact title='My title' color='#61DAFB' size={24} />;
}
```
Set color as `default` to use the default color for each icon
```jsx
import { SiReact } from '@icons-pack/react-simple-icons';
function DefaultColorExample() {
return <SiReact color='default' size={24} />;
}
```
Append `Hex` to the icon name to use the default color as hex string
```jsx
import { SiReact, SiReactHex } from '@icons-pack/react-simple-icons';
function DefaultColorExample() {
return <SiReact color={SiReactHex} size={24} />;
}
```
```jsx
import { SiReact } from '@icons-pack/react-simple-icons';
function CustomStyles() {
return <SiReact className='myStyle' />;
}
```
```css
.myStyle {
width: 35px;
height: 35px;
}
```