mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-09 17:39:42 +00:00
39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
/// Flutter icons BrandIcons
|
|
/// Copyright (C) 2021 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: BrandIcons
|
|
/// fonts:
|
|
/// - asset: fonts/BrandIcons.ttf
|
|
///
|
|
///
|
|
///
|
|
library;
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
class BrandIcons {
|
|
BrandIcons._();
|
|
|
|
static const String _kFontFam = 'BrandIcons';
|
|
static const String? _kFontPkg = null;
|
|
|
|
static const IconData save =
|
|
IconData(0xe804, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData globe =
|
|
IconData(0xe805, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData server =
|
|
IconData(0xe811, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData box =
|
|
IconData(0xe812, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData users =
|
|
IconData(0xe814, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
static const IconData terminal =
|
|
IconData(0xe81b, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
|
}
|