-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathjwt-wordmark.component.tsx
More file actions
30 lines (30 loc) · 962 Bytes
/
jwt-wordmark.component.tsx
File metadata and controls
30 lines (30 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export const JwtWordmarkComponent: React.FC = () => {
return (
<svg
width="51"
height="20"
viewBox="0 0 51 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7 0V12C7 15.3137 4.31371 18 1 18V18"
stroke="black"
style={{ stroke: 'black', strokeOpacity: 1 }}
strokeWidth="4"
/>
<path
d="M13.8932 0V14.5C13.8932 16.433 15.4602 18 17.3932 18V18C19.3262 18 20.8932 16.433 20.8932 14.5V5C20.8932 3.34315 22.2363 2 23.8932 2V2C25.55 2 26.8932 3.34315 26.8932 5V14.5C26.8932 16.433 28.4602 18 30.3932 18V18C32.3262 18 33.8932 16.433 33.8932 14.5V0"
stroke="black"
style={{ stroke: 'black', strokeOpacity: 1 }}
strokeWidth="4"
/>
<path
d="M38.8932 2H44.8932M44.8932 2V20M44.8932 2H50.8932"
stroke="black"
style={{ stroke: 'black', strokeOpacity: 1 }}
strokeWidth="4"
/>
</svg>
);
};