From 1f34ff31c65feead69c9ad8a8f1f6aba289e1663 Mon Sep 17 00:00:00 2001 From: Gravity UI Bot <111915794+gravity-ui-bot@users.noreply.github.com> Date: Tue, 19 Sep 2023 14:37:44 +0300 Subject: [PATCH] feat: sync icons (#32) Co-authored-by: amje --- lib/CopyXmark.tsx | 20 ++++++++++++++++++++ lib/PauseFill.tsx | 20 ++++++++++++++++++++ lib/Play.tsx | 19 +++++++++++++------ lib/PlayFill.tsx | 27 +++++++++++++++++++++++++++ lib/StopFill.tsx | 20 ++++++++++++++++++++ lib/index.ts | 4 ++++ metadata.json | 28 ++++++++++++++++++++++++++++ svgs/copy-xmark.svg | 1 + svgs/pause-fill.svg | 1 + svgs/play-fill.svg | 1 + svgs/play.svg | 2 +- svgs/stop-fill.svg | 1 + 12 files changed, 137 insertions(+), 7 deletions(-) create mode 100644 lib/CopyXmark.tsx create mode 100644 lib/PauseFill.tsx create mode 100644 lib/PlayFill.tsx create mode 100644 lib/StopFill.tsx create mode 100644 svgs/copy-xmark.svg create mode 100644 svgs/pause-fill.svg create mode 100644 svgs/play-fill.svg create mode 100644 svgs/stop-fill.svg diff --git a/lib/CopyXmark.tsx b/lib/CopyXmark.tsx new file mode 100644 index 0000000..2df9e72 --- /dev/null +++ b/lib/CopyXmark.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CopyXmark = (props: SVGProps) => ( + + + +); +export default CopyXmark; diff --git a/lib/PauseFill.tsx b/lib/PauseFill.tsx new file mode 100644 index 0000000..807ea2b --- /dev/null +++ b/lib/PauseFill.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const PauseFill = (props: SVGProps) => ( + + + +); +export default PauseFill; diff --git a/lib/Play.tsx b/lib/Play.tsx index 00098fe..55bb263 100644 --- a/lib/Play.tsx +++ b/lib/Play.tsx @@ -9,12 +9,19 @@ const Play = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - + + + + + + + + ); export default Play; diff --git a/lib/PlayFill.tsx b/lib/PlayFill.tsx new file mode 100644 index 0000000..bc3385c --- /dev/null +++ b/lib/PlayFill.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const PlayFill = (props: SVGProps) => ( + + + + + + + + + + +); +export default PlayFill; diff --git a/lib/StopFill.tsx b/lib/StopFill.tsx new file mode 100644 index 0000000..2ca8a9b --- /dev/null +++ b/lib/StopFill.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const StopFill = (props: SVGProps) => ( + + + +); +export default StopFill; diff --git a/lib/index.ts b/lib/index.ts index 1bae96c..971d7bb 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -225,6 +225,7 @@ export {default as CopyMinus} from './CopyMinus'; export {default as CopyPicture} from './CopyPicture'; export {default as CopyPlus} from './CopyPlus'; export {default as CopyTransparent} from './CopyTransparent'; +export {default as CopyXmark} from './CopyXmark'; export {default as Cpu} from './Cpu'; export {default as Cpus} from './Cpus'; export {default as CreditCard} from './CreditCard'; @@ -448,6 +449,7 @@ export {default as PaperPlane} from './PaperPlane'; export {default as Paperclip} from './Paperclip'; export {default as Passport} from './Passport'; export {default as Pause} from './Pause'; +export {default as PauseFill} from './PauseFill'; export {default as Pencil} from './Pencil'; export {default as PencilToLine} from './PencilToLine'; export {default as PencilToSquare} from './PencilToSquare'; @@ -468,6 +470,7 @@ export {default as PinFill} from './PinFill'; export {default as PinSlash} from './PinSlash'; export {default as PinSlashFill} from './PinSlashFill'; export {default as Play} from './Play'; +export {default as PlayFill} from './PlayFill'; export {default as PlugConnection} from './PlugConnection'; export {default as PlugWire} from './PlugWire'; export {default as Plus} from './Plus'; @@ -536,6 +539,7 @@ export {default as StarFill} from './StarFill'; export {default as Stethoscope} from './Stethoscope'; export {default as Sticker} from './Sticker'; export {default as Stop} from './Stop'; +export {default as StopFill} from './StopFill'; export {default as Stopwatch} from './Stopwatch'; export {default as Strikethrough} from './Strikethrough'; export {default as Suitcase} from './Suitcase'; diff --git a/metadata.json b/metadata.json index 756d2d7..15f5417 100644 --- a/metadata.json +++ b/metadata.json @@ -1866,6 +1866,13 @@ "componentName": "CopyTransparent", "keywords": [] }, + { + "name": "copy-xmark", + "style": "regular", + "svgName": "copy-xmark", + "componentName": "CopyXmark", + "keywords": [] + }, { "name": "cpu", "style": "regular", @@ -3740,6 +3747,13 @@ "componentName": "Pause", "keywords": [] }, + { + "name": "pause", + "style": "fill", + "svgName": "pause-fill", + "componentName": "PauseFill", + "keywords": [] + }, { "name": "pencil", "style": "regular", @@ -3943,6 +3957,13 @@ "componentName": "Play", "keywords": [] }, + { + "name": "play", + "style": "fill", + "svgName": "play-fill", + "componentName": "PlayFill", + "keywords": [] + }, { "name": "plug-connection", "style": "regular", @@ -4500,6 +4521,13 @@ "componentName": "Stop", "keywords": [] }, + { + "name": "stop", + "style": "fill", + "svgName": "stop-fill", + "componentName": "StopFill", + "keywords": [] + }, { "name": "stopwatch", "style": "regular", diff --git a/svgs/copy-xmark.svg b/svgs/copy-xmark.svg new file mode 100644 index 0000000..12ac2d6 --- /dev/null +++ b/svgs/copy-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/pause-fill.svg b/svgs/pause-fill.svg new file mode 100644 index 0000000..70e365d --- /dev/null +++ b/svgs/pause-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/play-fill.svg b/svgs/play-fill.svg new file mode 100644 index 0000000..79541f0 --- /dev/null +++ b/svgs/play-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/play.svg b/svgs/play.svg index 85f8b07..a295388 100644 --- a/svgs/play.svg +++ b/svgs/play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/stop-fill.svg b/svgs/stop-fill.svg new file mode 100644 index 0000000..711f44b --- /dev/null +++ b/svgs/stop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file