-
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 bc511f6
Showing
2 changed files
with
55 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,53 @@ | ||
// 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 16 17" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M16 8.50317C15.9977 9.21409 15.7433 9.82645 15.277 | ||
10.3567C15.0198 10.6493 14.7147 10.8809 14.3742 11.0667C14.3124 | ||
11.1004 14.298 11.1293 14.3189 11.1993C14.5277 11.8995 14.5325 | ||
12.5979 14.2453 13.2765C13.8549 14.199 13.1492 14.7389 12.1673 | ||
14.9176C11.6668 15.0085 11.1724 14.9615 10.6871 14.8156C10.6282 | ||
14.7981 10.601 14.8097 10.5718 14.8638C10.2568 15.4495 9.8166 | ||
15.9126 9.218 16.2134C8.21232 16.719 6.98907 16.5434 6.15732 | ||
15.7846C5.86383 15.5167 5.62247 15.2105 5.43408 14.8624C5.40405 | ||
14.8072 5.37572 14.7992 5.31793 14.8162C4.64795 15.0125 3.97655 | ||
15.0306 3.31875 14.778C2.34309 14.4035 1.77368 13.6838 1.58925 | ||
12.6602C1.50058 12.168 1.54903 11.6808 1.69294 11.2035C1.71418 | ||
11.1333 1.70427 11.1004 1.63713 11.0633C0.943066 10.6801 0.412462 | ||
10.1423 0.156367 9.38177C-0.169418 8.41452 0.0212371 7.52997 0.659492 | ||
6.74059C0.930885 6.40496 1.26574 6.14212 1.64676 5.9396C1.7054 5.90845 | ||
1.71475 5.87814 1.69634 5.81696C1.50143 5.1641 1.47792 4.50813 1.71362 | ||
3.86263C2.07425 2.87471 2.79069 2.29351 3.81649 2.09241C4.32386 1.99299 | ||
4.8267 2.04228 5.31991 2.19013C5.38507 2.20967 5.41368 2.19834 5.44626 | ||
2.13801C5.74202 1.58995 6.14372 1.13762 6.69954 0.847304C7.69701 0.32615 | ||
8.6687 0.396393 9.59704 1.02518C10.016 1.30898 10.3302 1.6922 10.5673 | ||
2.13744C10.6019 2.2023 10.6336 2.20882 10.701 2.18928C11.4914 1.95731 | ||
12.2676 1.98053 13.0048 2.36998C13.828 2.80503 14.292 3.50434 14.4331 | ||
4.41948C14.5065 4.8956 14.4572 5.36322 14.3158 5.82178C14.2971 5.88211 | ||
14.3119 5.90788 14.3651 5.93677C14.9232 6.2421 15.3742 6.65846 15.6776 | ||
7.22323C15.8923 7.62231 16.0042 8.04829 16.0003 8.50317H16Z" | ||
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'; |