Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/data/guestbook.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "MountainIcon",
"contributor": "Kane Norman",
"date": "2026-01-28T00:00:00.000Z",
"githubUsername": "kanenorman",
"id": "mountain-icon",
"message": "Onwards and upwards!"
}
]
17 changes: 17 additions & 0 deletions src/icons/MountainIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from "react";
import { IconProps } from "../types";

const MountainIcon: React.FC<IconProps> = ({ color = "currentColor", ...props }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill={color}
{...props}
>
<path d="M14 2l6 9 4 11H0l4-11 6-9 4 5.5L14 2zm0 4.5L12 9l-2-3-4 7 2 5h12l2-5-4-7-2 .5z" />
</svg>
);
};

export default MountainIcon;
4 changes: 3 additions & 1 deletion src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import SpiralIcon from './SpiralIcon';
import FireworksIcon from './FireworksIcon';
import PaperAirplaneIcon from './PaperAirplaneIcon';
import RocketIcon from './RocketIcon';
import MountainIcon from './MountainIcon';

const iconComponents: Record<string, React.FC<any>> = {
StarIcon,
Expand All @@ -32,7 +33,8 @@ const iconComponents: Record<string, React.FC<any>> = {
SpiralIcon,
FireworksIcon,
PaperAirplaneIcon,
RocketIcon
RocketIcon,
MountainIcon
};

export default iconComponents;