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