2022-09-22 23:48:50 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter_svg/svg.dart';
|
2023-05-09 21:57:40 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
|
|
|
|
|
|
class AddressBookIcon extends StatelessWidget {
|
|
|
|
const AddressBookIcon({
|
|
|
|
Key? key,
|
|
|
|
this.width = 16,
|
|
|
|
this.height = 16,
|
2022-09-21 21:59:52 +00:00
|
|
|
this.color,
|
2022-08-26 08:11:35 +00:00
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final double width;
|
|
|
|
final double height;
|
|
|
|
final Color? color;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return SvgPicture.asset(
|
|
|
|
Assets.svg.addressBook,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2022-09-22 23:48:50 +00:00
|
|
|
color: color ?? Theme.of(context).extension<StackColors>()!.textDark3,
|
2022-08-26 08:11:35 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|