From 59fc3bf686a5656d449b67ab345c3954a5d03633 Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Fri, 6 Mar 2026 18:48:38 -0600 Subject: [PATCH] feat: add SrJuggernaut logo component --- src/components/assets/SrJuggernautLogo.tsx | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/components/assets/SrJuggernautLogo.tsx diff --git a/src/components/assets/SrJuggernautLogo.tsx b/src/components/assets/SrJuggernautLogo.tsx new file mode 100644 index 0000000..e965829 --- /dev/null +++ b/src/components/assets/SrJuggernautLogo.tsx @@ -0,0 +1,60 @@ +import { css, cx } from '@styled-system/css' +import type { FC, SVGProps } from 'react' + +export type SrJuggernautLogoProps = SVGProps + +const SrJuggernautLogo: FC = ({ + className, + ...props +}) => ( + + Sr Juggernaut Logo + + + + + + + + + + + + +) +export default SrJuggernautLogo