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": "KiteIcon",
"contributor": "farookisonfire",
"date": "2026-02-23T00:00:00.000Z",
"githubUsername": "farookisonfire",
"id": "kite-icon",
"message": "Hello from the other side of the keyboard!"
},
{
"componentName": "RocketIcon",
"contributor": "Mobo",
Expand Down
21 changes: 21 additions & 0 deletions src/icons/KiteIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from "react";
import { IconProps } from "../types";

const KiteIcon: 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="M12 2L20 10L12 16L4 10Z" />
<rect x="4" y="9.7" width="16" height="0.6" fill="white" opacity="0.7" />
<rect x="11.7" y="2" width="0.6" height="14" fill="white" opacity="0.7" />
<rect x="11.7" y="16" width="0.6" height="3" />
<path d="M12 19L9.5 20.5L12 22L14.5 20.5Z" />
</svg>
);
};

export default KiteIcon;
2 changes: 2 additions & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import KiteIcon from './KiteIcon';
import StarIcon from './StarIcon';
import SmileyIcon from './SmileyIcon';
import CompassIcon from './CompassIcon';
Expand All @@ -17,6 +18,7 @@ import PaperAirplaneIcon from './PaperAirplaneIcon';
import RocketIcon from './RocketIcon';

const iconComponents: Record<string, React.FC<any>> = {
KiteIcon,
StarIcon,
SmileyIcon,
CompassIcon,
Expand Down