16 lines
No EOL
424 B
TypeScript
Executable file
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>
|
|
); |