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
@@ -1,4 +1,12 @@
[
{
"componentName": "BridgeIcon",
"contributor": "Blake Shannon",
"date": "2026-02-13T12:00:00.000Z",
"githubUsername": "blakeshannon",
"id": "bridge-icon",
"message": "hi its blake"
},
{
"componentName": "RocketIcon",
"contributor": "Mobo",
Expand Down
17 changes: 17 additions & 0 deletions src/icons/BridgeIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from "react";
import { IconProps } from "../types";

const BridgeIcon: 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="M3 18v-2h2v-4c0-1.1.9-2 2-2h2V8H7c-1.1 0-2-.9-2-2V4h2v2h2V4h2v2h2V4h2v2h2V4h2v2c0 1.1-.9 2-2 2h-2v2h2c1.1 0 2 .9 2 2v4h2v2H3zm6-2h2v-4h-2v4zm4 0h2v-4h-2v4z" />
</svg>
);
};

export default BridgeIcon;
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 BridgeIcon from './BridgeIcon';

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,
BridgeIcon
};

export default iconComponents;