From 8cdc2cf633a63843cb3abde85496f8f694ba4694 Mon Sep 17 00:00:00 2001 From: amje <3368839+amje@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:44:50 +0000 Subject: [PATCH] feat: sync icons --- lib/CheckDouble.tsx | 18 ++++++++++++++++++ lib/DiamondExclamationFill.tsx | 27 +++++++++++++++++++++++++++ lib/LogoMcp.tsx | 18 ++++++++++++++++++ lib/index.ts | 3 +++ metadata.json | 26 ++++++++++++++++++++++++++ svgs/check-double.svg | 1 + svgs/diamond-exclamation-fill.svg | 1 + svgs/logo-mcp.svg | 1 + 8 files changed, 95 insertions(+) create mode 100644 lib/CheckDouble.tsx create mode 100644 lib/DiamondExclamationFill.tsx create mode 100644 lib/LogoMcp.tsx create mode 100644 svgs/check-double.svg create mode 100644 svgs/diamond-exclamation-fill.svg create mode 100644 svgs/logo-mcp.svg diff --git a/lib/CheckDouble.tsx b/lib/CheckDouble.tsx new file mode 100644 index 0000000..77d24e2 --- /dev/null +++ b/lib/CheckDouble.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const CheckDouble = (props: SVGProps) => ( + + + + + + +); +export default CheckDouble; diff --git a/lib/DiamondExclamationFill.tsx b/lib/DiamondExclamationFill.tsx new file mode 100644 index 0000000..60f52ce --- /dev/null +++ b/lib/DiamondExclamationFill.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const DiamondExclamationFill = (props: SVGProps) => ( + + + + + + + + + + +); +export default DiamondExclamationFill; diff --git a/lib/LogoMcp.tsx b/lib/LogoMcp.tsx new file mode 100644 index 0000000..2629e87 --- /dev/null +++ b/lib/LogoMcp.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoMcp = (props: SVGProps) => ( + + + + + + +); +export default LogoMcp; diff --git a/lib/index.ts b/lib/index.ts index 19382fe..9012e71 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -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'; @@ -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'; @@ -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'; diff --git a/metadata.json b/metadata.json index 6b7b9f1..814a3f5 100644 --- a/metadata.json +++ b/metadata.json @@ -1103,6 +1103,15 @@ "done" ] }, + { + "name": "check-double", + "style": "regular", + "svgName": "check-double", + "componentName": "CheckDouble", + "keywords": [ + "read" + ] + }, { "name": "check-shape", "style": "regular", @@ -2515,6 +2524,16 @@ "warning" ] }, + { + "name": "diamond-exclamation", + "style": "fill", + "svgName": "diamond-exclamation-fill", + "componentName": "DiamondExclamationFill", + "keywords": [ + "attention", + "warning" + ] + }, { "name": "dice-1", "style": "regular", @@ -4198,6 +4217,13 @@ "componentName": "LogoMarkdown", "keywords": [] }, + { + "name": "logo-mcp", + "style": "regular", + "svgName": "logo-mcp", + "componentName": "LogoMcp", + "keywords": [] + }, { "name": "logo-mermaid", "style": "regular", diff --git a/svgs/check-double.svg b/svgs/check-double.svg new file mode 100644 index 0000000..010d19e --- /dev/null +++ b/svgs/check-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/diamond-exclamation-fill.svg b/svgs/diamond-exclamation-fill.svg new file mode 100644 index 0000000..5319545 --- /dev/null +++ b/svgs/diamond-exclamation-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-mcp.svg b/svgs/logo-mcp.svg new file mode 100644 index 0000000..bca4346 --- /dev/null +++ b/svgs/logo-mcp.svg @@ -0,0 +1 @@ + \ No newline at end of file