15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
import { SVGAttributes } from 'react';
|
|
|
|
export default function ApplicationLogo(props: SVGAttributes<SVGElement>) {
|
|
return (
|
|
<svg {...props} viewBox="0 0 316 316" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M50 40 H250 V80 H100 V140 H220 V180 H100 V280 H50 V40"
|
|
stroke="currentColor"
|
|
strokeWidth="30"
|
|
fill="none"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|