focus-flow/apps/focus_flow_flutter/lib/widgets/timeline/reward_icon.dart

12 lines
261 B
Dart

import 'package:flutter/material.dart';
class RewardIcon extends StatelessWidget {
const RewardIcon({this.color, super.key});
final Color? color;
@override
Widget build(BuildContext context) {
return Icon(Icons.auto_awesome, color: color);
}
}