29 lines
979 B
Dart
29 lines
979 B
Dart
/// Flutter icons CustomIcons
|
|
/// Copyright (C) 2022 by original authors @ fluttericon.com, fontello.com
|
|
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
|
|
///
|
|
/// To use this font, place it in your fonts/ directory and include the
|
|
/// following in your pubspec.yaml
|
|
///
|
|
/// flutter:
|
|
/// fonts:
|
|
/// - family: CustomIcons
|
|
/// fonts:
|
|
/// - asset: fonts/CustomIcons.ttf
|
|
///
|
|
///
|
|
///
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
class TabNavIcons {
|
|
TabNavIcons._();
|
|
|
|
static const _kFontFam = 'TabNavIcons';
|
|
static const String? _kFontPkg = null;
|
|
|
|
static const IconData news = IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData user = IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData home = IconData(0xe802, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData category = IconData(0xe803, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
}
|