modcomms/frontend/components/icons/OliverLogo.tsx
2025-12-18 16:51:27 +00:00

16 lines
No EOL
424 B
TypeScript
Executable file

import React from 'react';
export const OliverLogo: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg viewBox="0 0 200 40" xmlns="http://www.w3.org/2000/svg" {...props}>
<text
x="10"
y="28"
fontFamily="Arial, sans-serif"
fontSize="28"
fontWeight="bold"
fill="#333"
>
OLIVER
</text>
</svg>
);