mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
18 lines
354 B
Dart
18 lines
354 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CelsiusSymbol extends StatelessWidget {
|
|
const CelsiusSymbol({this.color, super.key});
|
|
|
|
final Color? color;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Text(
|
|
'°C',
|
|
style: Theme.of(context).textTheme.bodySmall!.copyWith(
|
|
color: color,
|
|
),
|
|
);
|
|
}
|
|
}
|