diff --git a/src/data/guestbook.json b/src/data/guestbook.json index 8b74999..2a4442d 100644 --- a/src/data/guestbook.json +++ b/src/data/guestbook.json @@ -1,4 +1,12 @@ [ + { + "componentName": "CubeIcon", + "contributor": "Peter", + "date": "2026-01-31T12:00:00.000Z", + "githubUsername": "petersancho", + "id": "cube-icon", + "message": "coding geometry using text! How cool!" + }, { "componentName": "RocketIcon", "contributor": "Mobo", diff --git a/src/icons/CubeIcon.tsx b/src/icons/CubeIcon.tsx new file mode 100644 index 0000000..8b972d5 --- /dev/null +++ b/src/icons/CubeIcon.tsx @@ -0,0 +1,17 @@ +import React from "react"; +import { IconProps } from "../types"; + +const CubeIcon: React.FC = ({ color = "currentColor", ...props }) => { + return ( + + + + ); +}; + +export default CubeIcon; diff --git a/src/icons/index.ts b/src/icons/index.ts index 3ef5b06..2286565 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 CubeIcon from './CubeIcon'; const iconComponents: Record> = { StarIcon, @@ -32,7 +33,8 @@ const iconComponents: Record> = { SpiralIcon, FireworksIcon, PaperAirplaneIcon, - RocketIcon + RocketIcon, + CubeIcon }; export default iconComponents;