npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mindinventory/mi-react-icon-picker

v1.0.0

Published

A React component library for selecting icons, compatible with Font Awesome 6.6.0.

Downloads

71

Readme

mi-react-icon-picker

A React component library for selecting icons, compatible with Font Awesome 6.6.0.

Installation

Install the mi-react-icon-picker package via npm:

npm i @mindinventory/mi-react-icon-picker

Importing the Component

To use the IconPicker component, you need to import the component and its associated CSS.

import IconPicker from "@mindinventory/mi-react-icon-picker";
import '@mindinventory/mi-react-icon-picker/lib/iconpicker.css';

Usage

Basic Example

You can provide a custom set of Font Awesome icons organized by categories.

    const icons = {
        Brands: [
            'fa-brands fa-500px',
            'fa-brands fa-amazon',
        ],
        Currency: [
        'fa-cny',
        'fa-dollar-sign',
        ],
    };

    <IconPicker
        icons={icons}
        value='fa-brands fa-amazon'
        onChange={(e) => onChange(e, 'icon')}
        closeOnSelect={true}
        showCategory={true}
        showSearch={true}
        isMulti={false}
        adjustPosition={{ top: 10, left: 0 }}
        buttonStyle='flex items-center justify-center min-h-[35px] min-w-[35px] rounded-l-[8px] border border-none'
        noSelectedPlaceholder='arrow-up-from-bracket'
        zIndexPopup={9999}
        popupStyle='bg-white border border-gray-300 shadow-lg rounded popup-container min-w-[280px]'
        gridColumns={5}
        gridRows={4}
        iconBgColor='bg-gray-200'
        iconSelectedBgColor='bg-blue-200'
        iconHeight={65}
        iconWidth={65}
    />

Using Pre-defined Icons

Alternatively, you can import a set of pre-defined Font Awesome icons from the package.

    
import icons from '@mindinventory/mi-react-icon-picker/lib/icons.js';

<IconPicker
    icons={icons}
        value='fa-brands fa-amazon'
        onChange={(e) => onChange(e, 'icon')}
        closeOnSelect={true}
        showCategory={true}
        showSearch={true}
        isMulti={false}
        adjustPosition={{ top: 10, left: 0 }}
        buttonStyle='flex items-center justify-center min-h-[35px] min-w-[35px] rounded-l-[8px] border border-none'
        noSelectedPlaceholder='arrow-up-from-bracket'
        zIndexPopup={9999}
        popupStyle='bg-white border border-gray-300 shadow-lg rounded popup-container min-w-[280px]'
        gridColumns={5}
        gridRows={4}
        iconBgColor='bg-gray-200'
        iconSelectedBgColor='bg-blue-200'
        iconHeight={65}
        iconWidth={65}
    />      
/>

Props

Here are the available props for the IconPicker component:

  • icons: Object - An object containing categories of Font Awesome icons.
  • value: String - The currently selected icon.
  • onChange: Function - Callback function triggered when an icon is selected.
  • closeOnSelect: Boolean - Whether to close the picker upon selection (default: true).
  • showCategory: Boolean - Whether to display icon categories (default: true).
  • showSearch: Boolean - Whether to enable a search bar for filtering icons (default: true).
  • isMulti: Boolean - Allows multiple icon selection (default: false).
  • adjustPosition: Object - Adjust the position of the icon picker relative to the trigger element.
  • buttonStyle: String - Custom styles for the picker button.
  • noSelectedPlaceholder: String - Placeholder icon when no icon is selected.
  • zIndexPopup: Number - z-index value for the icon picker popup.
  • popupStyle: String - Custom styles for the picker popup container.
  • gridColumns: Number - Number of columns in the icon grid.
  • gridRows: Number - Number of rows in the icon grid.
  • iconBgColor: String - Background color for the icons.
  • iconSelectedBgColor: String - Background color for the selected icon.
  • iconHeight: Number - Height of the icons (default: 65px).
  • iconWidth: Number - Width of the icons (default: 65px).