From da0b917dd467759c1e6d5e05ba9d41c24db306e4 Mon Sep 17 00:00:00 2001 From: Keilan Jackson Date: Wed, 28 Jan 2026 18:23:37 -0800 Subject: [PATCH] Sign guestbook: krjackso --- src/data/guestbook.json | 8 ++++++++ src/icons/MothIcon.tsx | 41 +++++++++++++++++++++++++++++++++++++++++ src/icons/index.ts | 4 +++- 3 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 src/icons/MothIcon.tsx diff --git a/src/data/guestbook.json b/src/data/guestbook.json index 8b74999..dfe4fd8 100644 --- a/src/data/guestbook.json +++ b/src/data/guestbook.json @@ -1,4 +1,12 @@ [ + { + "componentName": "MothIcon", + "contributor": "krjackso", + "date": "2026-01-28T12:00:00.000Z", + "githubUsername": "krjackso", + "id": "moth-icon", + "message": "Happy to be here and excited to contribute!" + }, { "componentName": "RocketIcon", "contributor": "Mobo", diff --git a/src/icons/MothIcon.tsx b/src/icons/MothIcon.tsx new file mode 100644 index 0000000..42b52fa --- /dev/null +++ b/src/icons/MothIcon.tsx @@ -0,0 +1,41 @@ +import React from "react"; +import { IconProps } from "../types"; + +const MothIcon: React.FC = ({ color = "currentColor", ...props }) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default MothIcon; diff --git a/src/icons/index.ts b/src/icons/index.ts index 3ef5b06..5691119 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 MothIcon from './MothIcon'; const iconComponents: Record> = { StarIcon, @@ -32,7 +33,8 @@ const iconComponents: Record> = { SpiralIcon, FireworksIcon, PaperAirplaneIcon, - RocketIcon + RocketIcon, + MothIcon }; export default iconComponents;