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

@fluentui/react-icons

v2.0.237

Published

Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.

Downloads

598,109

Readme

@fluentui/react-icons

IMPORTANT PLEASE READ @fluentui/react-icons has been major bumped to 2.x. There are some key changes in the api and usages. The main ones are:

  • The general icons are now resizeable using styling(i.e. scaling using the height and width props or using fontSize prop, etc). Ex: <AccessTimeFilled fontSize={40}>
  • There is now a more general icon offering included with the sized icons. Instead of importing <AccessTime24Filled>, you just import <AccessTimeFilled>.
  • The sized icons are still available, and are recommended if you know the specific size you want your icons to be. For the general case, the more general icons are available to you.

(Note: For those who were consuming @fluentui/react-icons v 0.x, we are releasing a new set of icons under @fluentui/react-icons v 1.x. You can still use 0.x version for the old icons, but if you major bump to 1.x, you will be using the new icons. The Fabric MDL2 SVG Icon set that is released with v 0.x has been rereleased in @fluentui/react-icons-mdl2.)

Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.

User story

@fluentui/react-icons are SVG based icons wrapped in a React element. Because each icon is its own element, you only need to import what you need for your application.

There are two different states of each icon, Filled and Regular, so you can choose what works best for your application. These are by default sized to 1em, and can be scaled up or down to suit your developer needs.

There are also helpful interfaces that will allow you to add styling to fit the icons to your specific application.

User flows

In order to use these icons, simply import them as import { [Componentname][state] } from @fluentui/react-icons as follows:

import { AccessTimeFilled } from "@fluentui/react-icons";

The previous icon offerings are scalable, but if you know what size you want to use for your icons, and you are not planning on using multiple sizes, it is recommended to use the sized icons. These are the same icons as the general case, but in multiple different sizes, built to look pixel perfect at those specific sizes. You can import the sized icons in a similar way:

import { AccessTime24Filled } from "@fluentui/react-icons";

You can also style the icons using the FluentIconsProps interface, with the className prop or the primaryFill prop.

Finally, you can bundle the Filled and Regular versions of each icon into a compound icon component using the bundleIcon method. The bundleIcon() function returns a component with both states of the icon, and you can then use the classnames iconFilledClassName and iconRegularClassName to style this compound component.

If you would like to get the bundled icon without any of the default styling, then add the filled prop to the new component and the icon will not have any default styling. To style this new icon, add a user defined stylesheet to the icon component.

import * as React from "react";
import * as ReactDOM from "react-dom";
import { 
    AccessTimeFilled, 
    AccessTimeRegular,
    bundleIcon,
    iconFilledClassName,
    iconRegularClassName
} from "@fluentui/react-icons";
import { makeStyles } from "@fluentui/react-make-styles";


const iconStyleProps: FluentIconsProps = {
    primaryFill: "purple",
    className: "iconClass"
};

const useIconStyles = makeStyles({
    icon: {
        ":hover": {
            [`& .${iconFilledClassName}`]: {
                display: "none"
            },
            [`& .${iconRegularClassName}`]: {
                display: "inline"
            }
        }
    }
})

const AccessTime = bundleIcon(AccessTimeFilled, AccessTimeRegular)
const rootElement = document.getElementById("root");
const styles = useIconStyles();
ReactDOM.render(
    <div className={styles.icon}>
        <AccessTime aria-label="AccessTime" {...iconStyleProps} />
    </div>, 
    rootElement
    )

Using the icon font

If, for performance or other reasons, you wish to use the font implementation of these icons rather than the SVG implementation, you can specify "fluentIconFont" as a condition for the import, either via Node >= 12.19.0 or webpack >= 5.0.0.

// webpack.config.js
module.exports = {
  //...
  resolve: {
    conditionNames: ['fluentIconFont', 'require', 'node'],
  },
};

If you do choose this route, you may wish to use @fluentui/react-icons-font-subsetting-webpack-plugin to optimize the font assets.

Viewing the icons in a webpage

You can view the full list of available icons by type: regular or filled

Appendix and FAQ

:::info Find this document incomplete? Leave a comment! :::

tags: Templates Documentation