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