ONEO.FluentUIIconsLike.Generator 2.0.0

dotnet add package ONEO.FluentUIIconsLike.Generator --version 2.0.0
                    
NuGet\Install-Package ONEO.FluentUIIconsLike.Generator -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ONEO.FluentUIIconsLike.Generator" Version="2.0.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ONEO.FluentUIIconsLike.Generator" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="ONEO.FluentUIIconsLike.Generator">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ONEO.FluentUIIconsLike.Generator --version 2.0.0
                    
#r "nuget: ONEO.FluentUIIconsLike.Generator, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ONEO.FluentUIIconsLike.Generator@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ONEO.FluentUIIconsLike.Generator&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=ONEO.FluentUIIconsLike.Generator&version=2.0.0
                    
Install as a Cake Tool

FluentUI Icons Like

fluentui-icons-like is a small monorepo for shipping Microsoft Fluent UI System Icons in practical app-friendly forms.

Screenshot

FluentUI Icons Like screenshot

Packages

Package Ecosystem Status
@oneo/fluentui-icons-like npm npm version
ONEO.FluentUIIconsLike NuGet NuGet Version
ONEO.FluentUIIconsLike.Generator NuGet NuGet Version

Features

  • Fluent UI System Icons for Svelte and Avalonia
  • Tree-shakable Svelte components
  • Avalonia source generator workflow for referenced symbols
  • Shared generator pipeline for icon data

Quick Use

Svelte

Install the package:

pnpm add @oneo/fluentui-icons-like

Use icons in a Svelte component:

<script lang="ts">
  import FluentIconAccessTime from '@oneo/fluentui-icons-like/FluentIconAccessTime.svelte';
  import FluentIconAccessibility from '@oneo/fluentui-icons-like/FluentIconAccessibility.svelte';
  import FluentIconAdd from '@oneo/fluentui-icons-like/FluentIconAdd.svelte';
</script>

<div style="display:flex;gap:12px;align-items:center;">
  <FluentIconAccessTime size={24} style="Regular" />
  <FluentIconAccessibility size={24} style="Filled" />
  <FluentIconAdd size={20} style="Regular" />
</div>

Avalonia

Install the packages:

dotnet add package ONEO.FluentUIIconsLike
dotnet add package ONEO.FluentUIIconsLike.Generator

Reference the source generator as an analyzer in your project file:

<ItemGroup>
  <PackageReference Include="ONEO.FluentUIIconsLike" Version="2.0.0-preview.0" />
  <PackageReference Include="ONEO.FluentUIIconsLike.Generator" Version="2.0.0-preview.0" PrivateAssets="all" />
</ItemGroup>

Add FluentIconReferences to list the icons your app uses. The source generator builds icon data from these references:

using FluentUIIconsLike;

[assembly: FluentIconReferences(
    FluentIconSymbol.AccessTime,
    FluentIconSymbol.Accessibility,
    FluentIconSymbol.Add)]

Use the icon control in axaml:

<Window xmlns="https://github.com/avaloniaui"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:icons="https://github.com/oneo-me/fluentui-icons-like">
  <StackPanel Spacing="12">
    <icons:FluentIcon Symbol="AccessTime" Size="Size24" Style="Regular" Foreground="DodgerBlue" />
    <icons:FluentIcon Symbol="Accessibility" Size="Size24" Style="Filled" Foreground="MediumSeaGreen" />
  </StackPanel>
</Window>

Contributing

Environment

  • Node.js 22+
  • pnpm 10+
  • .NET SDK 10.0.0

Project Structure

.
├── builder/              # icon build and generation scripts
├── packages/
│   ├── svelte/           # Svelte package and preview app
│   └── avalonia/         # Avalonia library, generator, and demo
├── README.md
└── LICENSE

License

MIT

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 101 5/10/2026
2.0.0-preview.0 51 5/6/2026