1.1.0 • Published 5 months ago

@choiceform/icons-react v1.1.0

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

@choiceform/icons-react

React components for SVG icons.

Installation

# npm
npm install @choiceform/icons-react

# pnpm
pnpm add @choiceform/icons-react

# yarn
yarn add @choiceform/icons-react

How to use

Choiceform Icons for React is built with ES Modules and is fully tree-shakable.

Each icon can be imported as a React component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.

Example

import React from "react";
import { Search, CircleAdd, SettingsSolid } from "@choiceform/icons-react";

function App() {
  return (
    <div>
      <Search />
      <CircleAdd />
      <SettingsSolid />
    </div>
  );
}

export default App;

Props

Each icon component accepts the following props:

NameTypeDefaultDescription
widthstring \| number'16'Width of the icon
heightstring \| number'16'Height of the icon
colorstring'currentColor'Color of the icon
titlestringundefinedAccessibility title

Applying props

import React from "react";
import { Search } from "@choiceform/icons-react";

function App() {
  return <Search width={32} height={32} color="#1976d2" />;
}

export default App;

Styling with CSS

All icons include a default CSS class name (choiceform-icon) that can be used for styling:

.choiceform-icon {
  /* Your custom styles */
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
}

Custom Class Name

The default class name can be changed globally by modifying the icon-config.json file at the root of the project:

{
  "iconClassName": "my-custom-icon-class"
}

After changing the configuration, regenerate the icons:

npm run generate

Using Icon Metadata

The library also exports icon metadata that can be useful for building icon pickers, documentation, or other features that need information about available icons.

import React from "react";
import { iconMetadata } from "@choiceform/icons-react/metadata";

function IconList() {
  return (
    <div>
      <h1>Total Icons: {iconMetadata.length}</h1>
      <ul>
        {iconMetadata.map((icon) => (
          <li key={icon.name}>
            {icon.name} - Category: {icon.category}
          </li>
        ))}
      </ul>
    </div>
  );
}

export default IconList;

Features

  • Tree Shakable: Only import the icons you use
  • TypeScript Support: Full TypeScript definitions for all components
  • Accessible: All icons have proper ARIA attributes
  • Customizable: Style icons with CSS or component props
  • Optimized SVGs: All icons are optimized with SVGO
  • React 18 Support: Compatible with the latest React version
  • Server-Side Rendering: Full SSR support

Metadata Properties

Each icon in the metadata includes:

PropertyDescription
nameThe name of the icon
categoryThe category the icon belongs to
tagsArray of tags for search/filtering
filenameOriginal SVG filename
widthWidth of the SVG (if available)
heightHeight of the SVG (if available)
optimizedSvgThe optimized SVG string
1.1.0

5 months ago

1.0.8

5 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago