From b7d2ef4c0fb3884d07fd60fb5ee3890a1c758f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 4 Jan 2021 20:11:29 +0900 Subject: [PATCH] feat: added wave component --- components/Wave.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 components/Wave.tsx diff --git a/components/Wave.tsx b/components/Wave.tsx new file mode 100644 index 0000000..8a36423 --- /dev/null +++ b/components/Wave.tsx @@ -0,0 +1,17 @@ +const Wave = ({ color, className }:WaveProps):JSX.Element => { + return ( + + + + ) +} + +interface WaveProps { + color: string + className?: string +} + +export default Wave \ No newline at end of file