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": "AuroraIcon",
"contributor": "alexa-bren-pd",
"date": "2025-12-02T12:00:00.000Z",
"githubUsername": "alexa-bren-pd",
"id": "aurora-icon",
"message": "Sending glowing vibes from the polar code front!"
},
{
"componentName": "RocketIcon",
"contributor": "Mobo",
Expand Down
24 changes: 24 additions & 0 deletions src/icons/AuroraIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from "react";
import { IconProps } from "../types";

const AuroraIcon: React.FC<IconProps> = ({ color = "currentColor", ...props }) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
{...props}
>
<path d="M2 18 Q6 10 10 18 T18 18 T22 18" opacity="0.8" />
<path d="M1 15 Q5 8 9 15 T17 15 T23 15" opacity="0.6" />
<path d="M3 12 Q7 6 11 12 T19 12 T23 12" opacity="0.5" />
<path d="M4 9 Q8 4 12 9 T20 9 T24 9" opacity="0.4" />
</svg>
);
};

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

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

export default iconComponents;