-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4040cef
commit 7b5be57
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | ||
// @ts-ignore | ||
import React from 'react'; | ||
|
||
import { ComponentPropsWithoutRef } from 'react'; | ||
|
||
interface SVGProps extends ComponentPropsWithoutRef<'div'> { | ||
size?: number; | ||
} | ||
|
||
export function Certificate(props: SVGProps) { | ||
let { size } = props; | ||
|
||
return ( | ||
<> | ||
<svg | ||
width={size ?? 16} | ||
height={size ?? 16} | ||
viewBox="0 0 17 17" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M16.5428 8.50317C16.5406 9.2141 16.2862 9.82645 | ||
15.8199 10.3567C15.5626 10.6493 15.2575 10.8809 14.917 | ||
11.0667C14.8553 11.1004 14.8408 11.1293 14.8618 11.1993C15.0706 | ||
11.8995 15.0754 12.5979 14.7881 13.2765C14.3978 14.199 13.6921 | ||
14.7389 12.7102 14.9176C12.2096 15.0085 11.7153 14.9615 11.23 | ||
14.8157C11.1711 14.7981 11.1439 14.8097 11.1147 14.8638C10.7997 | ||
15.4495 10.3594 15.9126 9.76085 16.2134C8.75516 16.719 7.53191 | ||
16.5434 6.70017 15.7846C6.40668 15.5167 6.16532 15.2105 5.97693 | ||
14.8624C5.9469 14.8072 5.91857 14.7992 5.86078 14.8162C5.19079 | ||
15.0125 4.51939 15.0306 3.86159 14.778C2.88594 14.4035 2.31652 | ||
13.6838 2.1321 12.6602C2.04343 12.168 2.09187 11.6808 2.23578 | ||
11.2035C2.25703 11.1333 2.24712 11.1004 2.17998 11.0633C1.48591 | ||
10.6801 0.955309 10.1423 0.699214 9.38177C0.373429 8.41452 0.564084 | ||
7.52997 1.20234 6.7406C1.47373 6.40496 1.80858 6.14212 2.18961 | ||
5.9396C2.24825 5.90845 2.2576 5.87814 2.23918 5.81696C2.04428 | ||
5.1641 2.02077 4.50813 2.25646 3.86263C2.61709 2.87471 3.33354 | ||
2.29351 4.35933 2.09241C4.86671 1.99299 5.36955 2.04228 5.86276 | ||
2.19013C5.92792 2.20967 5.95653 2.19834 5.98911 2.13801C6.28486 | ||
1.58995 6.68657 1.13762 7.24239 0.847304C8.23986 0.32615 9.21154 | ||
0.396393 10.1399 1.02518C10.5589 1.30898 10.873 1.6922 11.1102 | ||
2.13744C11.1447 2.20231 11.1765 2.20882 11.2439 2.18928C12.0343 | ||
1.95731 12.8105 1.98053 13.5476 2.36998C14.3708 2.80503 14.8349 | ||
3.50434 14.976 4.41948C15.0493 4.8956 15 5.36322 14.8587 5.82178C14.84 | ||
5.88211 14.8547 5.90788 14.908 5.93677C15.466 6.2421 15.917 6.65846 | ||
16.2204 7.22323C16.4352 7.62231 16.5471 8.0483 16.5431 8.50317H16.5428Z" | ||
fill="#1AE19D" | ||
/> | ||
</svg> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export * from './MassaLogo'; | ||
export * from './MassaToken'; | ||
export * from './MassaWallet'; | ||
export * from './StationLogo'; | ||
export * from './Certificate'; |