Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions lib/CheckDouble.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import * as React from 'react';
import type {SVGProps} from 'react';
const CheckDouble = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
viewBox="0 0 16 16"
{...props}
>
<g fill="currentColor">
<path d="M9.97 4.47a.75.75 0 1 1 1.06 1.06L7.665 8.895l1.363 1.515 4.942-4.94a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.088-.028l-1.84-2.045L5.53 11.03a.75.75 0 0 1-1.094-.036l-3.5-4a.75.75 0 0 1 1.128-.988l2.972 3.396.56-.561-1.654-1.839a.75.75 0 0 1 1.116-1.004l1.601 1.78z" />
<path d="M9.97 4.47a.75.75 0 1 1 1.06 1.06L7.665 8.895l1.363 1.515 4.942-4.94a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.088-.028l-1.84-2.045L5.53 11.03a.75.75 0 0 1-1.094-.036l-3.5-4a.75.75 0 0 1 1.129-.988l2.971 3.396.56-.561-1.654-1.839a.75.75 0 0 1 1.116-1.004l1.601 1.78z" />
</g>
</svg>
);
export default CheckDouble;
27 changes: 27 additions & 0 deletions lib/DiamondExclamationFill.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import * as React from 'react';
import type {SVGProps} from 'react';
const DiamondExclamationFill = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
viewBox="0 0 16 16"
{...props}
>
<g clipPath="url(#a)">
<path
fill="currentColor"
fillRule="evenodd"
d="M5.828.98a3 3 0 0 1 4.243 0l4.95 4.949a3 3 0 0 1 0 4.243l-4.95 4.95a3 3 0 0 1-4.243 0l-4.95-4.95a3 3 0 0 1 0-4.243zM7.95 9.55a1 1 0 1 0 0 2 1 1 0 0 0 0-2m0-5.25a.75.75 0 0 0-.75.75v2.5a.75.75 0 1 0 1.5 0v-2.5a.75.75 0 0 0-.75-.75"
clipRule="evenodd"
/>
</g>
<defs>
<clipPath id="a">
<path fill="currentColor" d="M0 0h16v16H0z" />
</clipPath>
</defs>
</svg>
);
export default DiamondExclamationFill;
18 changes: 18 additions & 0 deletions lib/LogoMcp.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import * as React from 'react';
import type {SVGProps} from 'react';
const LogoMcp = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
viewBox="0 0 16 16"
{...props}
>
<g fill="currentColor">
<path d="M5.85 1.24a3.263 3.263 0 0 1 5.534 2.654 3.262 3.262 0 0 1 2.568 5.574L9.117 14.23l.208.212a.75.75 0 0 1-1.07 1.053l-.734-.746a.75.75 0 0 1 .01-1.061l5.37-5.288a1.762 1.762 0 0 0-2.473-2.51L7.445 8.825a.751.751 0 0 1-1.22-.823.8.8 0 0 1 .167-.246L9.376 4.82a1.763 1.763 0 0 0-2.473-2.512l-5.37 5.287A.75.75 0 0 1 .48 6.527z" />
<path d="M7.22 3.467a.751.751 0 0 1 1.052 1.07L5.6 7.167A1.743 1.743 0 0 0 8.045 9.65l2.673-2.63a.75.75 0 0 1 1.052 1.07l-2.672 2.63a3.243 3.243 0 0 1-4.55-4.622z" />
</g>
</svg>
);
export default LogoMcp;
3 changes: 3 additions & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export {default as ChartMixed} from './ChartMixed';
export {default as ChartPie} from './ChartPie';
export {default as ChartTreemap} from './ChartTreemap';
export {default as Check} from './Check';
export {default as CheckDouble} from './CheckDouble';
export {default as CheckShape} from './CheckShape';
export {default as CheckShapeFill} from './CheckShapeFill';
export {default as Cherry} from './Cherry';
Expand Down Expand Up @@ -304,6 +305,7 @@ export {default as DatabasesFill} from './DatabasesFill';
export {default as Delete} from './Delete';
export {default as Diamond} from './Diamond';
export {default as DiamondExclamation} from './DiamondExclamation';
export {default as DiamondExclamationFill} from './DiamondExclamationFill';
export {default as DiamondFill} from './DiamondFill';
export {default as Dice1} from './Dice1';
export {default as Dice2} from './Dice2';
Expand Down Expand Up @@ -499,6 +501,7 @@ export {default as LogoGitlab} from './LogoGitlab';
export {default as LogoLinux} from './LogoLinux';
export {default as LogoMacos} from './LogoMacos';
export {default as LogoMarkdown} from './LogoMarkdown';
export {default as LogoMcp} from './LogoMcp';
export {default as LogoMermaid} from './LogoMermaid';
export {default as LogoNotion} from './LogoNotion';
export {default as LogoOsi} from './LogoOsi';
Expand Down
26 changes: 26 additions & 0 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1103,6 +1103,15 @@
"done"
]
},
{
"name": "check-double",
"style": "regular",
"svgName": "check-double",
"componentName": "CheckDouble",
"keywords": [
"read"
]
},
{
"name": "check-shape",
"style": "regular",
Expand Down Expand Up @@ -2515,6 +2524,16 @@
"warning"
]
},
{
"name": "diamond-exclamation",
"style": "fill",
"svgName": "diamond-exclamation-fill",
"componentName": "DiamondExclamationFill",
"keywords": [
"attention",
"warning"
]
},
{
"name": "dice-1",
"style": "regular",
Expand Down Expand Up @@ -4198,6 +4217,13 @@
"componentName": "LogoMarkdown",
"keywords": []
},
{
"name": "logo-mcp",
"style": "regular",
"svgName": "logo-mcp",
"componentName": "LogoMcp",
"keywords": []
},
{
"name": "logo-mermaid",
"style": "regular",
Expand Down
1 change: 1 addition & 0 deletions svgs/check-double.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions svgs/diamond-exclamation-fill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions svgs/logo-mcp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.