
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
@fluentui/react-icons
Advanced tools
Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.
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:
height
and width
props or using fontSize
prop, etc). Ex: <AccessTimeFilled fontSize={40}>
<AccessTime24Filled>
, you just import <AccessTimeFilled>
.(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.
@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.
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
)
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.
You can view the full list of available icons by type: regular or filled
:::info Find this document incomplete? Leave a comment! :::
Templates
Documentation
react-icons is a popular package that provides a wide range of icons from various icon libraries, including Font Awesome, Material Design, and more. It offers a similar functionality to @fluentui/react-icons but with a broader selection of icon sets.
@material-ui/icons is a package that provides Material Design icons for use in React applications. It is part of the Material-UI library and offers a similar functionality to @fluentui/react-icons but follows the Material Design guidelines.
fontawesome is a widely-used icon library that offers a vast collection of icons. The React component library for Font Awesome allows for easy integration of these icons into React applications. It provides similar functionality to @fluentui/react-icons but with a focus on the Font Awesome icon set.
FAQs
Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.
The npm package @fluentui/react-icons receives a total of 273,428 weekly downloads. As such, @fluentui/react-icons popularity was classified as popular.
We found that @fluentui/react-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.