Skip to content

Commit

Permalink
Add Certificate logo for plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Jun 12, 2023
1 parent 9901619 commit bfa6e0a
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
65 changes: 65 additions & 0 deletions src/components/Icons/Svg/Massa/Certificate.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
// 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 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 8.00317C15.9977 8.71409 15.7433 9.32645
15.277 9.85667C15.0198 10.1492 14.7147 10.3809
14.3742 10.5667C14.3124 10.6004 14.298 10.6293
14.3189 10.6993C14.5277 11.3995 14.5325 12.0979
14.2453 12.7765C13.8549 13.699 13.1492 14.2389
12.1673 14.4176C11.6668 14.5085 11.1724 14.4615
10.6871 14.3157C10.6282 14.2981 10.601 14.3097
10.5718 14.3638C10.2568 14.9495 9.81659 15.4126
9.218 15.7134C8.21232 16.219 6.98907 16.0434 6.15732
15.2846C5.86383 15.0167 5.62247 14.7105 5.43408
14.3624C5.40405 14.3072 5.37572 14.2992 5.31793
14.3162C4.64795 14.5125 3.97655 14.5306 3.31875
14.278C2.34309 13.9035 1.77368 13.1838 1.58925
12.1602C1.50058 11.668 1.54903 11.1808 1.69294
10.7035C1.71418 10.6333 1.70427 10.6004 1.63713
10.5633C0.943066 10.1801 0.412462 9.64226 0.156367
8.88177C-0.169418 7.91452 0.0212371 7.02997 0.659492
6.24059C0.930885 5.90496 1.26574 5.64212 1.64676 5.4396C1.7054
5.40845 1.71475 5.37814 1.69634 5.31696C1.50143 4.6641 1.47792
4.00813 1.71362 3.36263C2.07425 2.37471 2.79069 1.79351 3.81649
1.59241C4.32386 1.49299 4.8267 1.54228 5.31991 1.69013C5.38507
1.70967 5.41368 1.69834 5.44626 1.63801C5.74202 1.08995 6.14372
0.637621 6.69954 0.347304C7.69701 -0.17385 8.6687 -0.103607
9.59704 0.525176C10.016 0.808979 10.3302 1.1922 10.5673
1.63744C10.6019 1.70231 10.6336 1.70882 10.701 1.68928C11.4914
1.45731 12.2676 1.48053 13.0048 1.86998C13.828 2.30503 14.292
3.00434 14.4331 3.91948C14.5065 4.3956 14.4572 4.86322 14.3158
5.32178C14.2971 5.38211 14.3119 5.40788 14.3651 5.43677C14.9232
5.7421 15.3742 6.15846 15.6776 6.72323C15.8923 7.12231 16.0042
7.54829 16.0003 8.00317H16Z"
fill="#1AE19D"
/>
<path
d="M11.3333 6L7.66667 9.66595L6 7.99961"
stroke="white"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</>
);
}
4 changes: 4 additions & 0 deletions src/components/Icons/Svg/Massa/Certified logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/components/Icons/Svg/Massa/index.ts
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';

0 comments on commit bfa6e0a

Please sign in to comment.