import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:stackwallet/themes/stack_colors.dart'; import 'package:stackwallet/utilities/assets.dart'; class QrCodeIcon extends StatelessWidget { const QrCodeIcon({ Key? key, this.width = 17, this.height = 17, this.color, }) : super(key: key); final double width; final double height; final Color? color; @override Widget build(BuildContext context) { return SvgPicture.asset( Assets.svg.qrcode, width: width, height: height, color: color ?? Theme.of(context).extension()!.textDark3, ); } }