From 40c5f08dfe4f9c90c663de4724bf286b8d6fa17e Mon Sep 17 00:00:00 2001 From: dm1sh Date: Thu, 27 Jul 2023 14:16:12 +0300 Subject: [PATCH] Added points icon --- front/src/assets/handStars.svg | 7 +++++++ front/src/components/Points.tsx | 11 ++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 front/src/assets/handStars.svg diff --git a/front/src/assets/handStars.svg b/front/src/assets/handStars.svg new file mode 100644 index 0000000..e14b406 --- /dev/null +++ b/front/src/assets/handStars.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/front/src/components/Points.tsx b/front/src/components/Points.tsx index 6ff6a6a..fee87ff 100644 --- a/front/src/components/Points.tsx +++ b/front/src/components/Points.tsx @@ -1,5 +1,7 @@ import { CSSProperties } from 'react' +import handStarsIcon from '../assets/handStars.svg' + type PointsProps = { points?: number } @@ -11,12 +13,19 @@ const styles = { points: { float: 'right', } as CSSProperties, + icon: { + height: 24, + paddingBottom: 5, + } as CSSProperties, } function Points({ points }: PointsProps) { return (
-
Набрано очков: {points}
+
+ Набрано очков: + Hand giving stars icon {points} +
) }