High-quality, MIT-licensed Blazor components. Trimming-safe, AOT-compatible, and designed for real-world applications.
SVG icon libraries with true tree-shaking support. Only the icons you use end up in your bundle.
7,400+ Material Design icons with true trimming support
1,500+ Lucide icons - beautiful, consistent, and customizable
2,000+ Bootstrap icons for familiar, reliable iconography
2,000+ FontAwesome 6 free icons
1,600+ FontAwesome 5 free icons
5,000+ FluentUI System icons from Microsoft
# Install any icon library
dotnet add package EasyAppDev.Blazor.Icons.Lucide
dotnet add package EasyAppDev.Blazor.Icons.MaterialDesign
dotnet add package EasyAppDev.Blazor.Icons.BootstrapModern state management using C# records. Redux DevTools integration for debugging.
Type-safe state management for Blazor using C# records with Redux DevTools integration
public record CounterState(
int Count);
public class CounterStore
: Store<CounterState>
{
public CounterStore()
: base(new(Count: 0)) { }
public void Increment() =>
SetState(State with {
Count = State.Count + 1
});
}High-performance autocomplete with 7 display modes. Optional AI-powered semantic search.
We use these libraries in our own products. They're battle-tested and production-ready.
Open source enables collaboration. Report issues, suggest features, or contribute code.
Use them anywhere - personal projects, commercial apps, or enterprise solutions. No restrictions.
Our open source libraries are just the beginning. Check out our premium starter kits for a complete foundation to build your SaaS.