From cc167ec85319693b16ced20231cd1de167145af2 Mon Sep 17 00:00:00 2001 From: wkim10 Date: Sun, 27 Oct 2024 14:46:40 -0400 Subject: [PATCH] small prettier change --- src/app/page.tsx | 24 +++++++++++------------ src/components/StatsCard.tsx | 37 +++++++++++++++++++++--------------- 2 files changed, 34 insertions(+), 27 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 96f8667..d208833 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,22 +6,22 @@ export default function Home() { return (
); diff --git a/src/components/StatsCard.tsx b/src/components/StatsCard.tsx index 20d0997..d4db323 100644 --- a/src/components/StatsCard.tsx +++ b/src/components/StatsCard.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React from "react"; import { Icon } from "@iconify/react/dist/iconify.js"; interface StatsCardProps { @@ -11,29 +11,36 @@ interface StatsCardProps { const StatsCard = ({ heading, value, icon, date }: StatsCardProps) => { return (
-
+
-
-
{heading}
+
+
+ {heading}
-
-
-
{value}
-
-
{date}
-
+
+
+
+
+ {value} +
+
+
+ {date}
+
+
- +
+
-
- ); }; export default StatsCard; - -