diff --git a/src/data/guestbook.json b/src/data/guestbook.json index 8b74999..7c2a9e8 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": "DiamondIcon", + "contributor": "lewisGRJ", + "date": "2026-02-13T12:00:00.000Z", + "githubUsername": "lewisGRJ", + "id": "diamond-icon", + "message": "Hey there! Dropping a little sparkle in the guestbook. Happy to be here!" } ] diff --git a/src/icons/DiamondIcon.tsx b/src/icons/DiamondIcon.tsx new file mode 100644 index 0000000..2a8fc40 --- /dev/null +++ b/src/icons/DiamondIcon.tsx @@ -0,0 +1,23 @@ +import React from "react"; +import { IconProps } from "../types"; + +const DiamondIcon: React.FC = ({ color = "currentColor", ...props }) => { + return ( + + + + + + ); +}; + +export default DiamondIcon; diff --git a/src/icons/index.ts b/src/icons/index.ts index 3ef5b06..c4da225 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 DiamondIcon from './DiamondIcon'; const iconComponents: Record> = { StarIcon, @@ -32,7 +33,8 @@ const iconComponents: Record> = { SpiralIcon, FireworksIcon, PaperAirplaneIcon, - RocketIcon + RocketIcon, + DiamondIcon }; export default iconComponents;