ONEO.FluentUIIconsLike 2.0.0-preview.0

This is a prerelease version of ONEO.FluentUIIconsLike.
There is a newer version of this package available.
See the version list below for details.
dotnet add package ONEO.FluentUIIconsLike --version 2.0.0-preview.0
                    
NuGet\Install-Package ONEO.FluentUIIconsLike -Version 2.0.0-preview.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" Version="2.0.0-preview.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ONEO.FluentUIIconsLike" Version="2.0.0-preview.0" />
                    
Directory.Packages.props
<PackageReference Include="ONEO.FluentUIIconsLike" />
                    
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 --version 2.0.0-preview.0
                    
#r "nuget: ONEO.FluentUIIconsLike, 2.0.0-preview.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@2.0.0-preview.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&version=2.0.0-preview.0&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=ONEO.FluentUIIconsLike&version=2.0.0-preview.0&prerelease
                    
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.

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 { Access_Time, Accessibility, Add } from '@oneo/fluentui-icons-like';
</script>

<div style="display:flex;gap:12px;align-items:center;">
  <Access_Time size={24} style="Regular" />
  <Accessibility size={24} style="Filled" />
  <Add 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-beta.0" />
  <PackageReference Include="ONEO.FluentUIIconsLike.Generator" Version="2.0.0-beta.0" PrivateAssets="all" />
</ItemGroup>

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

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.0 105 7/7/2026
2.0.0 119 5/10/2026
2.0.0-preview.0 64 5/6/2026