mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
21 lines
411 B
Dart
21 lines
411 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_app/features/shared_widgets/text_widgets/body_small.dart';
|
|
|
|
class CardTitle extends StatelessWidget {
|
|
const CardTitle({
|
|
super.key,
|
|
required this.title,
|
|
});
|
|
|
|
final String title;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BodySmall(
|
|
text: title,
|
|
fontColor: Colors.grey,
|
|
fontSize: 12,
|
|
);
|
|
}
|
|
}
|