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 (