diff --git a/src/data/guestbook.json b/src/data/guestbook.json index c528cd8..f41a242 100644 --- a/src/data/guestbook.json +++ b/src/data/guestbook.json @@ -1,5 +1,12 @@ [ { + "componentName": "TreeIcon", + "contributor": "Nityesh Agarwal", + "date": "2025-04-30T12:00:00.000Z", + "githubUsername": "nityeshaga", + "id": "tree-icon", + "message": "Growing together through code, branching out with new ideas!" + },{ "componentName": "MusicNoteIcon", "contributor": "Veda Bhalla", "date": "2025-06-02T12:13:37.000Z", diff --git a/src/icons/TreeIcon.tsx b/src/icons/TreeIcon.tsx new file mode 100644 index 0000000..4870014 --- /dev/null +++ b/src/icons/TreeIcon.tsx @@ -0,0 +1,18 @@ +import React from "react"; +import { IconProps } from "../types"; + +const TreeIcon: React.FC = ({ color = "currentColor", ...props }) => { + return ( + + + + + ); +}; + +export default TreeIcon; diff --git a/src/icons/index.ts b/src/icons/index.ts index f4efcb2..77b5e28 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -4,6 +4,7 @@ import SmileyIcon from './SmileyIcon'; import CompassIcon from './CompassIcon'; import RobotIcon from './RobotIcon'; import MoonIcon from './MoonIcon'; +import TreeIcon from './TreeIcon'; import PlanetIcon from './PlanetIcon'; import CoffeeIcon from './CoffeeIcon'; import BookIcon from './BookIcon'; @@ -15,6 +16,7 @@ const iconComponents: Record> = { CompassIcon, RobotIcon, MoonIcon, + TreeIcon PlanetIcon, CoffeeIcon, BookIcon,