From 4368233fe4f437a150570726f549d25de8864146 Mon Sep 17 00:00:00 2001 From: Adam Sobotka Date: Sun, 29 Aug 2021 19:40:39 +0200 Subject: [PATCH] Create Heart.tsx I'd need a symbol of heart for my project. --- core/src/components/clothingGraphic/Heart.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 core/src/components/clothingGraphic/Heart.tsx diff --git a/core/src/components/clothingGraphic/Heart.tsx b/core/src/components/clothingGraphic/Heart.tsx new file mode 100644 index 0000000..b7f9a24 --- /dev/null +++ b/core/src/components/clothingGraphic/Heart.tsx @@ -0,0 +1,14 @@ +import React from 'react' + +export const HeartGraphic = () => { + return ( + <> + + + ) +}