Iconoir is an open-source library with 1300+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.
iconoir_flutter is an open source package that exports these icons as Flutter widgets (flutter_svg) that can be used in all of your Flutter projects.
flutter pub add iconoir_flutterimport 'package:flutter/material.dart';
import 'package:iconoir_flutter/iconoir_flutter.dart';
void main() {
  runApp(const App());
}
class App extends StatelessWidget {
  const App({ super.key });
  
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: DemoPage(),
    );
  }
}
class DemoPage extends StatelessWidget {
  const DemoPage({ super.key });
  
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
        child: const Iconoir(),
      ),
    );
  }
}
Default values for the most common props are given below:
| Prop name | Default value | 
|---|---|
| color | "currentColor" | 
| width | "1.5em" | 
| height | "1.5em" | 
The Flutter widges are named as PascalCase variations of their reference names (i.e. airplane-helix-45deg becomes AirplaneHelix45deg).