diff --git a/src/data/guestbook.json b/src/data/guestbook.json index 8b74999..cf3c922 100644 --- a/src/data/guestbook.json +++ b/src/data/guestbook.json @@ -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": "KatyWaveIcon", + "contributor": "Katy", + "date": "2026-02-17T12:00:00.000Z", + "githubUsername": "katycarr", + "id": "katy-wave-icon", + "message": "Waving hello to the team!" } ] diff --git a/src/icons/KatyWaveIcon.tsx b/src/icons/KatyWaveIcon.tsx new file mode 100644 index 0000000..a0bbd92 --- /dev/null +++ b/src/icons/KatyWaveIcon.tsx @@ -0,0 +1,18 @@ +import React from "react"; +import { IconProps } from "../types"; + +const KatyWaveIcon: React.FC = ({ color = "currentColor", ...props }) => { + return ( + + + + + ); +}; + +export default KatyWaveIcon; diff --git a/src/icons/index.ts b/src/icons/index.ts index 3ef5b06..e22b43a 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -15,6 +15,7 @@ import SpiralIcon from './SpiralIcon'; import FireworksIcon from './FireworksIcon'; import PaperAirplaneIcon from './PaperAirplaneIcon'; import RocketIcon from './RocketIcon'; +import KatyWaveIcon from './KatyWaveIcon'; const iconComponents: Record> = { StarIcon, @@ -32,7 +33,8 @@ const iconComponents: Record> = { SpiralIcon, FireworksIcon, PaperAirplaneIcon, - RocketIcon + RocketIcon, + KatyWaveIcon }; export default iconComponents;