Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@uifabric/icons
Advanced tools
Icons for Fluent UI React (formerly Office UI Fabric React)
Fluent UI React Icons includes a collection of 1100+ icons which you can use in your application.
If you are using Fluent UI React components, you can make all icons available by calling the initializeIcons
function from the @uifabric/icons
package:
import { initializeIcons } from '@uifabric/icons';
// Register icons and pull the fonts from the default SharePoint cdn.
initializeIcons();
// ...or, register icons and pull the fonts from your own cdn:
initializeIcons('https://my.cdn.com/path/to/icons/');
This will make ALL icons in the collection available, but will download them on demand when referenced using the @uifabric/styling
APIs getIcon
or getIconClassName
.
If you are using Fluent UI React, you can use the Icon
component and pass in the corresponding iconName property to render a given icon.
import { Icon } from '@fluentui/react/lib/Icon';
<Icon iconName="Snow" />;
getIconClassName
APIThe styling package includes a getIconClassName
API which can provide a css class to use for rendering the icon manually using the :before
pseudoselector:
import { getIconClassName } from '@uifabric/styling';
return `<i class="${getIconClassName('Snow')}" />`;
See GitHub for more details on the Fluent UI React project and packages within.
FAQs
Fluent UI React icon set.
We found that @uifabric/icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.