import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:match_magic/styles/styles.dart'; import 'package:match_magic/utilities/assets.dart'; class ClipboardIcon extends StatelessWidget { const ClipboardIcon({ Key? key, this.width = 18, this.height = 18, this.color, }) : super(key: key); final double width; final double height; final Color? color; @override Widget build(BuildContext context) { return SvgPicture.asset( Assets.svg.clipboard, width: width, height: height, color: AppStyles.accentColor, ); } }