stack_wallet/lib/widgets/icon_widgets/addressbook_icon.dart

38 lines
858 B
Dart
Raw Normal View History

2023-05-26 21:21:16 +00:00
/*
* This file is part of Stack Wallet.
*
* Copyright (c) 2023 Cypher Stack
* All Rights Reserved.
* The code is distributed under GPLv3 license, see LICENSE file for details.
* Generated by Cypher Stack on 2023-05-26
*
*/
import 'package:flutter/material.dart';
2022-08-26 08:11:35 +00:00
import 'package:flutter_svg/svg.dart';
import '../../themes/stack_colors.dart';
import '../../utilities/assets.dart';
2022-08-26 08:11:35 +00:00
class AddressBookIcon extends StatelessWidget {
const AddressBookIcon({
2024-05-27 23:56:22 +00:00
super.key,
2022-08-26 08:11:35 +00:00
this.width = 16,
this.height = 16,
this.color,
2024-05-27 23:56:22 +00:00
});
2022-08-26 08:11:35 +00:00
final double width;
final double height;
final Color? color;
@override
Widget build(BuildContext context) {
return SvgPicture.asset(
Assets.svg.addressBook,
width: width,
height: height,
color: color ?? Theme.of(context).extension<StackColors>()!.textDark3,
2022-08-26 08:11:35 +00:00
);
}
}