Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/data/guestbook.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,13 @@
"githubUsername": "HeadstartAI",
"id": "star-icon",
"message": "First one to sign the guestbook! I created this star icon to light up your day. Hope you like it!"
},
{
"componentName": "WaveIcon",
"contributor": "Sherri010",
"date": "2026-03-09T00:00:00.000Z",
"githubUsername": "Sherri010",
"id": "wave-icon",
"message": "Dropping in with good vibes — hope your day flows smoothly!"
}
]
13 changes: 13 additions & 0 deletions src/icons/WaveIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";
import { IconProps } from "../types";

const WaveIcon: React.FC<IconProps> = ({ color = "currentColor", ...props }) => {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill={color} {...props}>
<path d="M1 9C4.3 4 7.7 4 11 9s6.7 5 10 0v3c-3.3 5-6.7 5-10 0S4.3 7 1 12V9z"/>
<path d="M1 15c3.3-5 6.7-5 10 0s6.7 5 10 0v3c-3.3 5-6.7 5-10 0s-6.7-5-10 0v-3z"/>
</svg>
);
};

export default WaveIcon;
4 changes: 3 additions & 1 deletion src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import SpiralIcon from './SpiralIcon';
import FireworksIcon from './FireworksIcon';
import PaperAirplaneIcon from './PaperAirplaneIcon';
import RocketIcon from './RocketIcon';
import WaveIcon from './WaveIcon';

const iconComponents: Record<string, React.FC<any>> = {
StarIcon,
Expand All @@ -32,7 +33,8 @@ const iconComponents: Record<string, React.FC<any>> = {
SpiralIcon,
FireworksIcon,
PaperAirplaneIcon,
RocketIcon
RocketIcon,
WaveIcon
};

export default iconComponents;