From b2d0455ae22533cbc6c03bcf87157463bd048ea6 Mon Sep 17 00:00:00 2001 From: amje Date: Tue, 20 Dec 2022 09:30:34 +0000 Subject: [PATCH] feat: sync icons --- lib/Arrow2Clockwise.tsx | 20 + lib/Arrow3Clockwise.tsx | 27 + lib/ArrowClockwise.tsx | 20 + lib/{BellBadge.tsx => BellDot.tsx} | 4 +- lib/{Ladybug.tsx => Bug.tsx} | 4 +- lib/Camera.tsx | 20 + lib/Cart.tsx | 20 + lib/Case.tsx | 20 + lib/CirclePause.tsx | 20 + lib/CirclePlay.tsx | 20 + lib/CircleStop.tsx | 20 + lib/Clock.tsx | 20 + lib/Creditcard.tsx | 20 + lib/Display.tsx | 20 + lib/DisplayPulse.tsx | 20 + lib/Eye.tsx | 20 + lib/EyeSlash.tsx | 20 + lib/Microphone.tsx | 20 + lib/MicrophoneSlash.tsx | 20 + lib/ShoppingBag.tsx | 20 + lib/ShoppingBasket.tsx | 20 + lib/SmartPhone.tsx | 20 + lib/SpeakerWave0.tsx | 20 + lib/SpeakerWave1.tsx | 20 + lib/SpeakerWave2.tsx | 27 + lib/SpeakerXmark.tsx | 20 + lib/{SquareCheckmark.tsx => SquareCheck.tsx} | 4 +- lib/Suitcase.tsx | 20 + lib/Trolley.tsx | 20 + lib/Video.tsx | 20 + lib/index.ts | 33 +- metadata.json | 1690 ++++++++++------- svgs/arrow-2-clockwise.svg | 1 + svgs/arrow-3-clockwise.svg | 1 + svgs/arrow-clockwise.svg | 1 + svgs/{bell-badge.svg => bell-dot.svg} | 0 svgs/{ladybug.svg => bug.svg} | 0 svgs/camera.svg | 1 + svgs/cart.svg | 1 + svgs/case.svg | 1 + svgs/circle-pause.svg | 1 + svgs/circle-play.svg | 1 + svgs/circle-stop.svg | 1 + svgs/clock.svg | 1 + svgs/creditcard.svg | 1 + svgs/display-pulse.svg | 1 + svgs/display.svg | 1 + svgs/eye-slash.svg | 1 + svgs/eye.svg | 1 + svgs/microphone-slash.svg | 1 + svgs/microphone.svg | 1 + svgs/shopping-bag.svg | 1 + svgs/shopping-basket.svg | 1 + svgs/smart-phone.svg | 1 + svgs/speaker-wave-0.svg | 1 + svgs/speaker-wave-1.svg | 1 + svgs/speaker-wave-2.svg | 1 + svgs/speaker-xmark.svg | 1 + ...{square-checkmark.svg => square-check.svg} | 0 svgs/suitcase.svg | 1 + svgs/trolley.svg | 1 + svgs/video.svg | 1 + 62 files changed, 1598 insertions(+), 718 deletions(-) create mode 100644 lib/Arrow2Clockwise.tsx create mode 100644 lib/Arrow3Clockwise.tsx create mode 100644 lib/ArrowClockwise.tsx rename lib/{BellBadge.tsx => BellDot.tsx} (92%) rename lib/{Ladybug.tsx => Bug.tsx} (93%) create mode 100644 lib/Camera.tsx create mode 100644 lib/Cart.tsx create mode 100644 lib/Case.tsx create mode 100644 lib/CirclePause.tsx create mode 100644 lib/CirclePlay.tsx create mode 100644 lib/CircleStop.tsx create mode 100644 lib/Clock.tsx create mode 100644 lib/Creditcard.tsx create mode 100644 lib/Display.tsx create mode 100644 lib/DisplayPulse.tsx create mode 100644 lib/Eye.tsx create mode 100644 lib/EyeSlash.tsx create mode 100644 lib/Microphone.tsx create mode 100644 lib/MicrophoneSlash.tsx create mode 100644 lib/ShoppingBag.tsx create mode 100644 lib/ShoppingBasket.tsx create mode 100644 lib/SmartPhone.tsx create mode 100644 lib/SpeakerWave0.tsx create mode 100644 lib/SpeakerWave1.tsx create mode 100644 lib/SpeakerWave2.tsx create mode 100644 lib/SpeakerXmark.tsx rename lib/{SquareCheckmark.tsx => SquareCheck.tsx} (87%) create mode 100644 lib/Suitcase.tsx create mode 100644 lib/Trolley.tsx create mode 100644 lib/Video.tsx create mode 100644 svgs/arrow-2-clockwise.svg create mode 100644 svgs/arrow-3-clockwise.svg create mode 100644 svgs/arrow-clockwise.svg rename svgs/{bell-badge.svg => bell-dot.svg} (100%) rename svgs/{ladybug.svg => bug.svg} (100%) create mode 100644 svgs/camera.svg create mode 100644 svgs/cart.svg create mode 100644 svgs/case.svg create mode 100644 svgs/circle-pause.svg create mode 100644 svgs/circle-play.svg create mode 100644 svgs/circle-stop.svg create mode 100644 svgs/clock.svg create mode 100644 svgs/creditcard.svg create mode 100644 svgs/display-pulse.svg create mode 100644 svgs/display.svg create mode 100644 svgs/eye-slash.svg create mode 100644 svgs/eye.svg create mode 100644 svgs/microphone-slash.svg create mode 100644 svgs/microphone.svg create mode 100644 svgs/shopping-bag.svg create mode 100644 svgs/shopping-basket.svg create mode 100644 svgs/smart-phone.svg create mode 100644 svgs/speaker-wave-0.svg create mode 100644 svgs/speaker-wave-1.svg create mode 100644 svgs/speaker-wave-2.svg create mode 100644 svgs/speaker-xmark.svg rename svgs/{square-checkmark.svg => square-check.svg} (100%) create mode 100644 svgs/suitcase.svg create mode 100644 svgs/trolley.svg create mode 100644 svgs/video.svg diff --git a/lib/Arrow2Clockwise.tsx b/lib/Arrow2Clockwise.tsx new file mode 100644 index 0000000..ba07f38 --- /dev/null +++ b/lib/Arrow2Clockwise.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Arrow2Clockwise = (props: SVGProps) => ( + + + +); +export default Arrow2Clockwise; diff --git a/lib/Arrow3Clockwise.tsx b/lib/Arrow3Clockwise.tsx new file mode 100644 index 0000000..c353629 --- /dev/null +++ b/lib/Arrow3Clockwise.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Arrow3Clockwise = (props: SVGProps) => ( + + + + + + + + + + +); +export default Arrow3Clockwise; diff --git a/lib/ArrowClockwise.tsx b/lib/ArrowClockwise.tsx new file mode 100644 index 0000000..1552709 --- /dev/null +++ b/lib/ArrowClockwise.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const ArrowClockwise = (props: SVGProps) => ( + + + +); +export default ArrowClockwise; diff --git a/lib/BellBadge.tsx b/lib/BellDot.tsx similarity index 92% rename from lib/BellBadge.tsx rename to lib/BellDot.tsx index ccedc43..dc207bd 100644 --- a/lib/BellBadge.tsx +++ b/lib/BellDot.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {SVGProps} from 'react'; -const BellBadge = (props: SVGProps) => ( +const BellDot = (props: SVGProps) => ( ) => ( /> ); -export default BellBadge; +export default BellDot; diff --git a/lib/Ladybug.tsx b/lib/Bug.tsx similarity index 93% rename from lib/Ladybug.tsx rename to lib/Bug.tsx index 8bf29b0..38d6721 100644 --- a/lib/Ladybug.tsx +++ b/lib/Bug.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {SVGProps} from 'react'; -const Ladybug = (props: SVGProps) => ( +const Bug = (props: SVGProps) => ( ) => ( ); -export default Ladybug; +export default Bug; diff --git a/lib/Camera.tsx b/lib/Camera.tsx new file mode 100644 index 0000000..9d34149 --- /dev/null +++ b/lib/Camera.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Camera = (props: SVGProps) => ( + + + +); +export default Camera; diff --git a/lib/Cart.tsx b/lib/Cart.tsx new file mode 100644 index 0000000..89156f3 --- /dev/null +++ b/lib/Cart.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Cart = (props: SVGProps) => ( + + + +); +export default Cart; diff --git a/lib/Case.tsx b/lib/Case.tsx new file mode 100644 index 0000000..69a2e17 --- /dev/null +++ b/lib/Case.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Case = (props: SVGProps) => ( + + + +); +export default Case; diff --git a/lib/CirclePause.tsx b/lib/CirclePause.tsx new file mode 100644 index 0000000..48fca87 --- /dev/null +++ b/lib/CirclePause.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CirclePause = (props: SVGProps) => ( + + + +); +export default CirclePause; diff --git a/lib/CirclePlay.tsx b/lib/CirclePlay.tsx new file mode 100644 index 0000000..cd793cb --- /dev/null +++ b/lib/CirclePlay.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CirclePlay = (props: SVGProps) => ( + + + +); +export default CirclePlay; diff --git a/lib/CircleStop.tsx b/lib/CircleStop.tsx new file mode 100644 index 0000000..eb60813 --- /dev/null +++ b/lib/CircleStop.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CircleStop = (props: SVGProps) => ( + + + +); +export default CircleStop; diff --git a/lib/Clock.tsx b/lib/Clock.tsx new file mode 100644 index 0000000..9994f76 --- /dev/null +++ b/lib/Clock.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Clock = (props: SVGProps) => ( + + + +); +export default Clock; diff --git a/lib/Creditcard.tsx b/lib/Creditcard.tsx new file mode 100644 index 0000000..4c9ff4d --- /dev/null +++ b/lib/Creditcard.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Creditcard = (props: SVGProps) => ( + + + +); +export default Creditcard; diff --git a/lib/Display.tsx b/lib/Display.tsx new file mode 100644 index 0000000..1c9fa80 --- /dev/null +++ b/lib/Display.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Display = (props: SVGProps) => ( + + + +); +export default Display; diff --git a/lib/DisplayPulse.tsx b/lib/DisplayPulse.tsx new file mode 100644 index 0000000..99cf945 --- /dev/null +++ b/lib/DisplayPulse.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const DisplayPulse = (props: SVGProps) => ( + + + +); +export default DisplayPulse; diff --git a/lib/Eye.tsx b/lib/Eye.tsx new file mode 100644 index 0000000..92d9cb0 --- /dev/null +++ b/lib/Eye.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Eye = (props: SVGProps) => ( + + + +); +export default Eye; diff --git a/lib/EyeSlash.tsx b/lib/EyeSlash.tsx new file mode 100644 index 0000000..be320a8 --- /dev/null +++ b/lib/EyeSlash.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const EyeSlash = (props: SVGProps) => ( + + + +); +export default EyeSlash; diff --git a/lib/Microphone.tsx b/lib/Microphone.tsx new file mode 100644 index 0000000..d1a05d4 --- /dev/null +++ b/lib/Microphone.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Microphone = (props: SVGProps) => ( + + + +); +export default Microphone; diff --git a/lib/MicrophoneSlash.tsx b/lib/MicrophoneSlash.tsx new file mode 100644 index 0000000..588d284 --- /dev/null +++ b/lib/MicrophoneSlash.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const MicrophoneSlash = (props: SVGProps) => ( + + + +); +export default MicrophoneSlash; diff --git a/lib/ShoppingBag.tsx b/lib/ShoppingBag.tsx new file mode 100644 index 0000000..bd9601e --- /dev/null +++ b/lib/ShoppingBag.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const ShoppingBag = (props: SVGProps) => ( + + + +); +export default ShoppingBag; diff --git a/lib/ShoppingBasket.tsx b/lib/ShoppingBasket.tsx new file mode 100644 index 0000000..b3f052d --- /dev/null +++ b/lib/ShoppingBasket.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const ShoppingBasket = (props: SVGProps) => ( + + + +); +export default ShoppingBasket; diff --git a/lib/SmartPhone.tsx b/lib/SmartPhone.tsx new file mode 100644 index 0000000..37e11b1 --- /dev/null +++ b/lib/SmartPhone.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const SmartPhone = (props: SVGProps) => ( + + + +); +export default SmartPhone; diff --git a/lib/SpeakerWave0.tsx b/lib/SpeakerWave0.tsx new file mode 100644 index 0000000..ab88fab --- /dev/null +++ b/lib/SpeakerWave0.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const SpeakerWave0 = (props: SVGProps) => ( + + + +); +export default SpeakerWave0; diff --git a/lib/SpeakerWave1.tsx b/lib/SpeakerWave1.tsx new file mode 100644 index 0000000..20969d2 --- /dev/null +++ b/lib/SpeakerWave1.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const SpeakerWave1 = (props: SVGProps) => ( + + + +); +export default SpeakerWave1; diff --git a/lib/SpeakerWave2.tsx b/lib/SpeakerWave2.tsx new file mode 100644 index 0000000..25de13e --- /dev/null +++ b/lib/SpeakerWave2.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const SpeakerWave2 = (props: SVGProps) => ( + + + + + + + + + + +); +export default SpeakerWave2; diff --git a/lib/SpeakerXmark.tsx b/lib/SpeakerXmark.tsx new file mode 100644 index 0000000..6083cbe --- /dev/null +++ b/lib/SpeakerXmark.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const SpeakerXmark = (props: SVGProps) => ( + + + +); +export default SpeakerXmark; diff --git a/lib/SquareCheckmark.tsx b/lib/SquareCheck.tsx similarity index 87% rename from lib/SquareCheckmark.tsx rename to lib/SquareCheck.tsx index 0dad949..5284614 100644 --- a/lib/SquareCheckmark.tsx +++ b/lib/SquareCheck.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {SVGProps} from 'react'; -const SquareCheckmark = (props: SVGProps) => ( +const SquareCheck = (props: SVGProps) => ( ) => ( /> ); -export default SquareCheckmark; +export default SquareCheck; diff --git a/lib/Suitcase.tsx b/lib/Suitcase.tsx new file mode 100644 index 0000000..840df0b --- /dev/null +++ b/lib/Suitcase.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Suitcase = (props: SVGProps) => ( + + + +); +export default Suitcase; diff --git a/lib/Trolley.tsx b/lib/Trolley.tsx new file mode 100644 index 0000000..5318d59 --- /dev/null +++ b/lib/Trolley.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Trolley = (props: SVGProps) => ( + + + +); +export default Trolley; diff --git a/lib/Video.tsx b/lib/Video.tsx new file mode 100644 index 0000000..b4e40c4 --- /dev/null +++ b/lib/Video.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Video = (props: SVGProps) => ( + + + +); +export default Video; diff --git a/lib/index.ts b/lib/index.ts index 129313e..69c02ed 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -1,3 +1,6 @@ +export {default as Arrow2Clockwise} from './Arrow2Clockwise'; +export {default as Arrow3Clockwise} from './Arrow3Clockwise'; +export {default as ArrowClockwise} from './ArrowClockwise'; export {default as ArrowDownToSquare} from './ArrowDownToSquare'; export {default as ArrowRightFromSquare} from './ArrowRightFromSquare'; export {default as ArrowRightToSquare} from './ArrowRightToSquare'; @@ -5,12 +8,16 @@ export {default as ArrowRightUpFromSquare} from './ArrowRightUpFromSquare'; export {default as ArrowUpFromSquare} from './ArrowUpFromSquare'; export {default as Bars} from './Bars'; export {default as Bell} from './Bell'; -export {default as BellBadge} from './BellBadge'; +export {default as BellDot} from './BellDot'; export {default as Bold} from './Bold'; export {default as Book} from './Book'; export {default as Bookmark} from './Bookmark'; export {default as BookmarkFill} from './BookmarkFill'; +export {default as Bug} from './Bug'; export {default as Calendar} from './Calendar'; +export {default as Camera} from './Camera'; +export {default as Cart} from './Cart'; +export {default as Case} from './Case'; export {default as Check} from './Check'; export {default as ChevronDown} from './ChevronDown'; export {default as ChevronLeft} from './ChevronLeft'; @@ -21,10 +28,14 @@ export {default as CircleExclamation} from './CircleExclamation'; export {default as CircleExclamationFill} from './CircleExclamationFill'; export {default as CircleInfo} from './CircleInfo'; export {default as CircleMinus} from './CircleMinus'; +export {default as CirclePause} from './CirclePause'; +export {default as CirclePlay} from './CirclePlay'; export {default as CirclePlus} from './CirclePlus'; export {default as CircleQuestion} from './CircleQuestion'; +export {default as CircleStop} from './CircleStop'; export {default as CircleXmark} from './CircleXmark'; export {default as Circles4} from './Circles4'; +export {default as Clock} from './Clock'; export {default as Code} from './Code'; export {default as CodeBranchesDown} from './CodeBranchesDown'; export {default as CodeBranchesRight} from './CodeBranchesRight'; @@ -37,12 +48,17 @@ export {default as Comment} from './Comment'; export {default as Comments} from './Comments'; export {default as Compass} from './Compass'; export {default as Copy} from './Copy'; +export {default as Creditcard} from './Creditcard'; +export {default as Display} from './Display'; +export {default as DisplayPulse} from './DisplayPulse'; export {default as Dots3} from './Dots3'; export {default as Dots3Vert} from './Dots3Vert'; export {default as Dots6} from './Dots6'; export {default as Dots6Vert} from './Dots6Vert'; export {default as Dots9} from './Dots9'; export {default as Envelope} from './Envelope'; +export {default as Eye} from './Eye'; +export {default as EyeSlash} from './EyeSlash'; export {default as FaceFun} from './FaceFun'; export {default as FaceNeutral} from './FaceNeutral'; export {default as FaceSad} from './FaceSad'; @@ -69,7 +85,6 @@ export {default as HeartPulse} from './HeartPulse'; export {default as Home} from './Home'; export {default as Italic} from './Italic'; export {default as Key} from './Key'; -export {default as Ladybug} from './Ladybug'; export {default as Link} from './Link'; export {default as Lock} from './Lock'; export {default as LockOpen} from './LockOpen'; @@ -82,6 +97,8 @@ export {default as LogoWindows} from './LogoWindows'; export {default as LogoYandex} from './LogoYandex'; export {default as LogoYandexCloud} from './LogoYandexCloud'; export {default as Magnifier} from './Magnifier'; +export {default as Microphone} from './Microphone'; +export {default as MicrophoneSlash} from './MicrophoneSlash'; export {default as Minus} from './Minus'; export {default as Nodes} from './Nodes'; export {default as NodesLoop} from './NodesLoop'; @@ -102,8 +119,15 @@ export {default as Shield} from './Shield'; export {default as ShieldCheck} from './ShieldCheck'; export {default as ShieldExclamation} from './ShieldExclamation'; export {default as ShieldKeyhole} from './ShieldKeyhole'; +export {default as ShoppingBag} from './ShoppingBag'; +export {default as ShoppingBasket} from './ShoppingBasket'; export {default as Sliders} from './Sliders'; -export {default as SquareCheckmark} from './SquareCheckmark'; +export {default as SmartPhone} from './SmartPhone'; +export {default as SpeakerWave0} from './SpeakerWave0'; +export {default as SpeakerWave1} from './SpeakerWave1'; +export {default as SpeakerWave2} from './SpeakerWave2'; +export {default as SpeakerXmark} from './SpeakerXmark'; +export {default as SquareCheck} from './SquareCheck'; export {default as SquareExclamation} from './SquareExclamation'; export {default as SquareMinus} from './SquareMinus'; export {default as SquarePlus} from './SquarePlus'; @@ -112,6 +136,7 @@ export {default as Star} from './Star'; export {default as StarFill} from './StarFill'; export {default as Sticker} from './Sticker'; export {default as Strikethrough} from './Strikethrough'; +export {default as Suitcase} from './Suitcase'; export {default as Terminal} from './Terminal'; export {default as ThumbsDown} from './ThumbsDown'; export {default as ThumbsDownFill} from './ThumbsDownFill'; @@ -122,5 +147,7 @@ export {default as ThunderboltFill} from './ThunderboltFill'; export {default as Trash} from './Trash'; export {default as TriangleExclamation} from './TriangleExclamation'; export {default as TriangleExclamationFill} from './TriangleExclamationFill'; +export {default as Trolley} from './Trolley'; export {default as Underline} from './Underline'; +export {default as Video} from './Video'; export {default as Xmark} from './Xmark'; diff --git a/metadata.json b/metadata.json index 85db4a1..d6c6635 100644 --- a/metadata.json +++ b/metadata.json @@ -1,103 +1,96 @@ { "icons": [ { - "name": "dots-9", - "style": "regular", - "svgName": "dots-9", - "componentName": "Dots9", - "keywords": [ - "dots", - "9", - "services" - ] - }, - { - "name": "magnifier", + "name": "arrow-2-clockwise", "style": "regular", - "svgName": "magnifier", - "componentName": "Magnifier", + "svgName": "arrow-2-clockwise", + "componentName": "Arrow2Clockwise", "keywords": [ - "magnifier", - "magnifying", - "glass", - "search" + "arrow", + "clockwise" ] }, { - "name": "bell", + "name": "arrow-3-clockwise", "style": "regular", - "svgName": "bell", - "componentName": "Bell", + "svgName": "arrow-3-clockwise", + "componentName": "Arrow3Clockwise", "keywords": [ - "bell", - "notify", - "notification" + "arrow", + "clockwise" ] }, { - "name": "bell-badge", + "name": "arrow-clockwise", "style": "regular", - "svgName": "bell-badge", - "componentName": "BellBadge", + "svgName": "arrow-clockwise", + "componentName": "ArrowClockwise", "keywords": [ - "bell", - "badge", - "notify", - "notification" + "arrow", + "clockwise" ] }, { - "name": "gear", + "name": "arrow-down-to-square", "style": "regular", - "svgName": "gear", - "componentName": "Gear", + "svgName": "arrow-down-to-square", + "componentName": "ArrowDownToSquare", "keywords": [ - "gear", - "setting", - "customization", - "tuning" + "arrow", + "down", + "square", + "import" ] }, { - "name": "sliders", + "name": "arrow-right-from-square", "style": "regular", - "svgName": "sliders", - "componentName": "Sliders", + "svgName": "arrow-right-from-square", + "componentName": "ArrowRightFromSquare", "keywords": [ - "sliders", - "setting", - "customization", - "tuning" + "arrow", + "right", + "square", + "exit" ] }, { - "name": "ladybug", + "name": "arrow-right-to-square", "style": "regular", - "svgName": "ladybug", - "componentName": "Ladybug", + "svgName": "arrow-right-to-square", + "componentName": "ArrowRightToSquare", "keywords": [ - "ladybug", - "bug" + "arrow", + "right", + "square", + "enter" ] }, { - "name": "globe", + "name": "arrow-right-up-from-square", "style": "regular", - "svgName": "globe", - "componentName": "Globe", + "svgName": "arrow-right-up-from-square", + "componentName": "ArrowRightUpFromSquare", "keywords": [ - "globe", - "language", - "planet" + "arrow", + "right", + "up", + "square", + "new", + "window" ] }, { - "name": "home", + "name": "arrow-up-from-square", "style": "regular", - "svgName": "home", - "componentName": "Home", + "svgName": "arrow-up-from-square", + "componentName": "ArrowUpFromSquare", "keywords": [ - "home" + "arrow", + "up", + "square", + "export", + "share" ] }, { @@ -112,406 +105,410 @@ ] }, { - "name": "person", + "name": "bell", "style": "regular", - "svgName": "person", - "componentName": "Person", + "svgName": "bell", + "componentName": "Bell", "keywords": [ - "person", - "profile", - "man" + "bell", + "notify", + "notification" ] }, { - "name": "persons", + "name": "bell-dot", "style": "regular", - "svgName": "persons", - "componentName": "Persons", + "svgName": "bell-dot", + "componentName": "BellDot", "keywords": [ - "persons", - "group", - "team" + "bell", + "dot", + "notify", + "notification" ] }, { - "name": "person-pencil", + "name": "bold", "style": "regular", - "svgName": "person-pencil", - "componentName": "PersonPencil", + "svgName": "bold", + "componentName": "Bold", "keywords": [ - "person", - "pencil", - "profile", - "man", - "edit" + "bold", + "text" ] }, { - "name": "person-plus", + "name": "book", "style": "regular", - "svgName": "person-plus", - "componentName": "PersonPlus", + "svgName": "book", + "componentName": "Book", "keywords": [ - "person", - "plus", - "profile", - "man", - "add" + "book", + "document", + "manual" ] }, { - "name": "person-xmark", + "name": "bookmark", "style": "regular", - "svgName": "person-xmark", - "componentName": "PersonXmark", + "svgName": "bookmark", + "componentName": "Bookmark", "keywords": [ - "person", - "xmark", - "profile", - "man", - "remove", - "delete" + "bookmark", + "favourites" ] }, { - "name": "person-work", - "style": "regular", - "svgName": "person-work", - "componentName": "PersonWork", + "name": "bookmark", + "style": "fill", + "svgName": "bookmark-fill", + "componentName": "BookmarkFill", "keywords": [ - "person", - "profile", - "man", - "work" + "bookmark", + "favourites" ] }, { - "name": "person-magnifier", + "name": "bug", "style": "regular", - "svgName": "person-magnifier", - "componentName": "PersonMagnifier", + "svgName": "bug", + "componentName": "Bug", "keywords": [ - "person", - "profile", - "man", - "magnifier", - "magnifying", - "glass", - "search" + "bug", + "ladybug" ] }, { - "name": "code", + "name": "calendar", "style": "regular", - "svgName": "code", - "componentName": "Code", + "svgName": "calendar", + "componentName": "Calendar", "keywords": [ - "code" + "calendar", + "date" ] }, { - "name": "terminal", + "name": "camera", "style": "regular", - "svgName": "terminal", - "componentName": "Terminal", + "svgName": "camera", + "componentName": "Camera", "keywords": [ - "terminal", - "console" + "camera", + "photo" ] }, { - "name": "nodes-loop", + "name": "cart", "style": "regular", - "svgName": "nodes-loop", - "componentName": "NodesLoop", + "svgName": "cart", + "componentName": "Cart", "keywords": [ - "code" + "cart", + "shopping" ] }, { - "name": "nodes", + "name": "case", "style": "regular", - "svgName": "nodes", - "componentName": "Nodes", + "svgName": "case", + "componentName": "Case", "keywords": [ - "nodes", - "instance" + "case" ] }, { - "name": "code-fork", + "name": "check", "style": "regular", - "svgName": "code-fork", - "componentName": "CodeFork", + "svgName": "check", + "componentName": "Check", "keywords": [ - "code", - "fork" + "check" ] }, { - "name": "code-trunk", + "name": "chevron-down", "style": "regular", - "svgName": "code-trunk", - "componentName": "CodeTrunk", + "svgName": "chevron-down", + "componentName": "ChevronDown", "keywords": [ - "code", - "trunk" + "chevron", + "down" ] }, { - "name": "code-merge", + "name": "chevron-left", "style": "regular", - "svgName": "code-merge", - "componentName": "CodeMerge", + "svgName": "chevron-left", + "componentName": "ChevronLeft", "keywords": [ - "code", - "merge" + "chevron", + "left" ] }, { - "name": "code-pull-request", + "name": "chevron-right", "style": "regular", - "svgName": "code-pull-request", - "componentName": "CodePullRequest", + "svgName": "chevron-right", + "componentName": "ChevronRight", "keywords": [ - "code", - "pull", - "request" + "chevron", + "right" ] }, { - "name": "code-commit", + "name": "chevron-up", "style": "regular", - "svgName": "code-commit", - "componentName": "CodeCommit", + "svgName": "chevron-up", + "componentName": "ChevronUp", "keywords": [ - "code", - "commit" + "chevron", + "up" ] }, { - "name": "code-branches-right", + "name": "circle-check", "style": "regular", - "svgName": "code-branches-right", - "componentName": "CodeBranchesRight", + "svgName": "circle-check", + "componentName": "CircleCheck", "keywords": [ - "code", - "branches" + "check" ] }, { - "name": "code-branches-down", + "name": "circle-exclamation", "style": "regular", - "svgName": "code-branches-down", - "componentName": "CodeBranchesDown", + "svgName": "circle-exclamation", + "componentName": "CircleExclamation", "keywords": [ - "code", - "branches" + "exclamation", + "attention", + "warning" ] }, { - "name": "file", + "name": "circle-exclamation", + "style": "fill", + "svgName": "circle-exclamation-fill", + "componentName": "CircleExclamationFill", + "keywords": [ + "exclamation", + "attention", + "warning" + ] + }, + { + "name": "circle-info", "style": "regular", - "svgName": "file", - "componentName": "File", + "svgName": "circle-info", + "componentName": "CircleInfo", "keywords": [ - "file", - "document", - "paper" + "info" ] }, { - "name": "files", + "name": "circle-minus", "style": "regular", - "svgName": "files", - "componentName": "Files", + "svgName": "circle-minus", + "componentName": "CircleMinus", "keywords": [ - "files", - "documents", - "papers", - "copy" + "minus", + "remove", + "delete" ] }, { - "name": "sticker", + "name": "circle-pause", "style": "regular", - "svgName": "sticker", - "componentName": "Sticker", + "svgName": "circle-pause", + "componentName": "CirclePause", "keywords": [ - "sticker", - "paper" + "circle", + "pause" ] }, { - "name": "envelope", + "name": "circle-play", "style": "regular", - "svgName": "envelope", - "componentName": "Envelope", + "svgName": "circle-play", + "componentName": "CirclePlay", "keywords": [ - "envelope", - "mail" + "circle", + "play" ] }, { - "name": "book", + "name": "circle-plus", "style": "regular", - "svgName": "book", - "componentName": "Book", + "svgName": "circle-plus", + "componentName": "CirclePlus", "keywords": [ - "book", - "document", - "manual" + "plus", + "add", + "new" ] }, { - "name": "picture", + "name": "circle-question", "style": "regular", - "svgName": "picture", - "componentName": "Picture", + "svgName": "circle-question", + "componentName": "CircleQuestion", "keywords": [ - "picture", - "image", - "photo" + "question" ] }, { - "name": "calendar", + "name": "circle-stop", "style": "regular", - "svgName": "calendar", - "componentName": "Calendar", + "svgName": "circle-stop", + "componentName": "CircleStop", "keywords": [ - "calendar", - "date" + "circle", + "stop" ] }, { - "name": "compass", + "name": "circle-xmark", "style": "regular", - "svgName": "compass", - "componentName": "Compass", + "svgName": "circle-xmark", + "componentName": "CircleXmark", "keywords": [ - "compass", - "direction", - "navigation" + "xmark", + "close", + "delete", + "remove" ] }, { - "name": "lock", + "name": "circles-4", "style": "regular", - "svgName": "lock", - "componentName": "Lock", + "svgName": "circles-4", + "componentName": "Circles4", "keywords": [ - "lock", - "security" + "circles" ] }, { - "name": "lock-open", + "name": "clock", "style": "regular", - "svgName": "lock-open", - "componentName": "LockOpen", + "svgName": "clock", + "componentName": "Clock", "keywords": [ - "lock", - "open", - "security" + "clock", + "time" ] }, { - "name": "key", + "name": "code", "style": "regular", - "svgName": "key", - "componentName": "Key", + "svgName": "code", + "componentName": "Code", "keywords": [ - "key", - "security" + "code" ] }, { - "name": "shield", + "name": "code-branches-down", "style": "regular", - "svgName": "shield", - "componentName": "Shield", + "svgName": "code-branches-down", + "componentName": "CodeBranchesDown", "keywords": [ - "shield", - "security" + "code", + "branches" ] }, { - "name": "shield-exclamation", + "name": "code-branches-right", "style": "regular", - "svgName": "shield-exclamation", - "componentName": "ShieldExclamation", + "svgName": "code-branches-right", + "componentName": "CodeBranchesRight", "keywords": [ - "shield", - "exclamation", - "security", - "attention", - "warning" + "code", + "branches" ] }, { - "name": "shield-check", + "name": "code-commit", "style": "regular", - "svgName": "shield-check", - "componentName": "ShieldCheck", + "svgName": "code-commit", + "componentName": "CodeCommit", "keywords": [ - "shield", - "check", - "security" + "code", + "commit" ] }, { - "name": "shield-keyhole", + "name": "code-fork", "style": "regular", - "svgName": "shield-keyhole", - "componentName": "ShieldKeyhole", + "svgName": "code-fork", + "componentName": "CodeFork", "keywords": [ - "shield", - "keyhole", - "security" + "code", + "fork" ] }, { - "name": "fingerprint", + "name": "code-merge", "style": "regular", - "svgName": "fingerprint", - "componentName": "Fingerprint", + "svgName": "code-merge", + "componentName": "CodeMerge", "keywords": [ - "finger", - "print", - "scan", - "touch" + "code", + "merge" ] }, { - "name": "pencil-to-square", + "name": "code-pull-request", "style": "regular", - "svgName": "pencil-to-square", - "componentName": "PencilToSquare", + "svgName": "code-pull-request", + "componentName": "CodePullRequest", "keywords": [ - "edit", - "pencil" + "code", + "pull", + "request" ] }, { - "name": "link", + "name": "code-trunk", "style": "regular", - "svgName": "link", - "componentName": "Link", + "svgName": "code-trunk", + "componentName": "CodeTrunk", "keywords": [ - "link", - "chain" + "code", + "trunk" ] }, { - "name": "paper-clip", + "name": "comment", "style": "regular", - "svgName": "paper-clip", - "componentName": "PaperClip", + "svgName": "comment", + "componentName": "Comment", "keywords": [ - "paper", - "clip", - "attach" + "comment", + "message", + "bubble" + ] + }, + { + "name": "comments", + "style": "regular", + "svgName": "comments", + "componentName": "Comments", + "keywords": [ + "comments", + "messages", + "bubbles" + ] + }, + { + "name": "compass", + "style": "regular", + "svgName": "compass", + "componentName": "Compass", + "keywords": [ + "compass", + "direction", + "navigation" ] }, { @@ -524,196 +521,115 @@ ] }, { - "name": "thunderbolt", + "name": "creditcard", "style": "regular", - "svgName": "thunderbolt", - "componentName": "Thunderbolt", + "svgName": "creditcard", + "componentName": "Creditcard", "keywords": [ - "thunderbolt", - "bolt", - "flash", - "lightning", - "electricity" + "creditcard", + "card", + "bank" ] }, { - "name": "thunderbolt", - "style": "fill", - "svgName": "thunderbolt-fill", - "componentName": "ThunderboltFill", + "name": "display", + "style": "regular", + "svgName": "display", + "componentName": "Display", "keywords": [ - "thunderbolt", - "bolt", - "flash", - "lightning", - "electricity" + "display", + "screen" ] }, { - "name": "star", + "name": "display-pulse", "style": "regular", - "svgName": "star", - "componentName": "Star", - "keywords": [ - "star", - "favourites" - ] - }, - { - "name": "star", - "style": "fill", - "svgName": "star-fill", - "componentName": "StarFill", - "keywords": [ - "star", - "favourites" - ] - }, - { - "name": "bookmark", - "style": "regular", - "svgName": "bookmark", - "componentName": "Bookmark", - "keywords": [ - "bookmark", - "favourites" - ] - }, - { - "name": "bookmark", - "style": "fill", - "svgName": "bookmark-fill", - "componentName": "BookmarkFill", + "svgName": "display-pulse", + "componentName": "DisplayPulse", "keywords": [ - "bookmark", - "favourites" + "display", + "pulse", + "screen" ] }, { - "name": "pin", + "name": "dots-3", "style": "regular", - "svgName": "pin", - "componentName": "Pin", - "keywords": [ - "pin" - ] - }, - { - "name": "pin", - "style": "fill", - "svgName": "pin-fill", - "componentName": "PinFill", + "svgName": "dots-3", + "componentName": "Dots3", "keywords": [ - "pin" + "dots", + "3" ] }, { - "name": "thumbs-up", + "name": "dots-3-vert", "style": "regular", - "svgName": "thumbs-up", - "componentName": "ThumbsUp", - "keywords": [ - "thumb", - "like", - "arm" - ] - }, - { - "name": "thumbs-up", - "style": "fill", - "svgName": "thumbs-up-fill", - "componentName": "ThumbsUpFill", + "svgName": "dots-3-vert", + "componentName": "Dots3Vert", "keywords": [ - "thumb", - "like", - "arm" + "dots", + "3" ] }, { - "name": "thumbs-down", + "name": "dots-6", "style": "regular", - "svgName": "thumbs-down", - "componentName": "ThumbsDown", - "keywords": [ - "thumb", - "dislike", - "arm" - ] - }, - { - "name": "thumbs-down", - "style": "fill", - "svgName": "thumbs-down-fill", - "componentName": "ThumbsDownFill", + "svgName": "dots-6", + "componentName": "Dots6", "keywords": [ - "thumb", - "dislike", - "arm" + "dots", + "6" ] }, { - "name": "hand-point-up", + "name": "dots-6-vert", "style": "regular", - "svgName": "hand-point-up", - "componentName": "HandPointUp", + "svgName": "dots-6-vert", + "componentName": "Dots6Vert", "keywords": [ - "hand", - "point", - "finger", - "touch", - "arm" + "dots", + "6" ] }, { - "name": "heart", + "name": "dots-9", "style": "regular", - "svgName": "heart", - "componentName": "Heart", - "keywords": [ - "heart", - "like" - ] - }, - { - "name": "heart", - "style": "fill", - "svgName": "heart-fill", - "componentName": "HeartFill", + "svgName": "dots-9", + "componentName": "Dots9", "keywords": [ - "heart", - "like" + "dots", + "9", + "services" ] }, { - "name": "heart-pulse", + "name": "envelope", "style": "regular", - "svgName": "heart-pulse", - "componentName": "HeartPulse", + "svgName": "envelope", + "componentName": "Envelope", "keywords": [ - "heart", - "pulse" + "envelope", + "mail" ] }, { - "name": "comment", + "name": "eye", "style": "regular", - "svgName": "comment", - "componentName": "Comment", + "svgName": "eye", + "componentName": "Eye", "keywords": [ - "comment", - "message", - "bubble" + "eye" ] }, { - "name": "comments", + "name": "eye-slash", "style": "regular", - "svgName": "comments", - "componentName": "Comments", + "svgName": "eye-slash", + "componentName": "EyeSlash", "keywords": [ - "comments", - "messages", - "bubbles" + "eye", + "slash" ] }, { @@ -726,16 +642,6 @@ "fun" ] }, - { - "name": "face-smile", - "style": "regular", - "svgName": "face-smile", - "componentName": "FaceSmile", - "keywords": [ - "face", - "smile" - ] - }, { "name": "face-neutral", "style": "regular", @@ -756,6 +662,16 @@ "sad" ] }, + { + "name": "face-smile", + "style": "regular", + "svgName": "face-smile", + "componentName": "FaceSmile", + "keywords": [ + "face", + "smile" + ] + }, { "name": "face-surprise", "style": "regular", @@ -767,284 +683,270 @@ ] }, { - "name": "circle-exclamation", + "name": "file", "style": "regular", - "svgName": "circle-exclamation", - "componentName": "CircleExclamation", + "svgName": "file", + "componentName": "File", "keywords": [ - "exclamation", - "attention", - "warning" + "file", + "document", + "paper" ] }, { - "name": "circle-exclamation", - "style": "fill", - "svgName": "circle-exclamation-fill", - "componentName": "CircleExclamationFill", + "name": "files", + "style": "regular", + "svgName": "files", + "componentName": "Files", "keywords": [ - "exclamation", - "attention", - "warning" + "files", + "documents", + "papers", + "copy" ] }, { - "name": "triangle-exclamation", + "name": "fingerprint", "style": "regular", - "svgName": "triangle-exclamation", - "componentName": "TriangleExclamation", + "svgName": "fingerprint", + "componentName": "Fingerprint", "keywords": [ - "exclamation", - "attention", - "warning" + "finger", + "print", + "scan", + "touch" ] }, { - "name": "triangle-exclamation", - "style": "fill", - "svgName": "triangle-exclamation-fill", - "componentName": "TriangleExclamationFill", + "name": "folder", + "style": "regular", + "svgName": "folder", + "componentName": "Folder", "keywords": [ - "exclamation", - "attention", - "warning" + "folder" ] }, { - "name": "circle-question", - "style": "regular", - "svgName": "circle-question", - "componentName": "CircleQuestion", + "name": "folder", + "style": "fill", + "svgName": "folder-fill", + "componentName": "FolderFill", "keywords": [ - "question" + "folder" ] }, { - "name": "square-exclamation", + "name": "folder-tree", "style": "regular", - "svgName": "square-exclamation", - "componentName": "SquareExclamation", + "svgName": "folder-tree", + "componentName": "FolderTree", "keywords": [ - "exclamation", - "attention", - "warning" + "folders", + "tree" ] }, { - "name": "circle-info", + "name": "folders", "style": "regular", - "svgName": "circle-info", - "componentName": "CircleInfo", + "svgName": "folders", + "componentName": "Folders", "keywords": [ - "info" + "folders" ] }, { - "name": "plus", + "name": "gear", "style": "regular", - "svgName": "plus", - "componentName": "Plus", + "svgName": "gear", + "componentName": "Gear", "keywords": [ - "plus", - "add", - "new" + "gear", + "setting", + "customization", + "tuning" ] }, { - "name": "minus", + "name": "geo", "style": "regular", - "svgName": "minus", - "componentName": "Minus", + "svgName": "geo", + "componentName": "Geo", "keywords": [ - "minus", - "remove", - "delete" + "geo" ] }, { - "name": "xmark", + "name": "geo-dots", "style": "regular", - "svgName": "xmark", - "componentName": "Xmark", + "svgName": "geo-dots", + "componentName": "GeoDots", "keywords": [ - "xmark", - "close", - "delete", - "remove" + "geo", + "dots" ] }, { - "name": "check", + "name": "geo-pin", "style": "regular", - "svgName": "check", - "componentName": "Check", + "svgName": "geo-pin", + "componentName": "GeoPin", "keywords": [ - "check" + "geo", + "pin" ] }, { - "name": "circle-plus", + "name": "geo-polygons", "style": "regular", - "svgName": "circle-plus", - "componentName": "CirclePlus", + "svgName": "geo-polygons", + "componentName": "GeoPolygons", "keywords": [ - "plus", - "add", - "new" + "geo", + "polygons" ] }, { - "name": "circle-minus", + "name": "globe", "style": "regular", - "svgName": "circle-minus", - "componentName": "CircleMinus", + "svgName": "globe", + "componentName": "Globe", "keywords": [ - "minus", - "remove", - "delete" + "globe", + "language", + "planet" ] }, { - "name": "circle-xmark", + "name": "hand-point-up", "style": "regular", - "svgName": "circle-xmark", - "componentName": "CircleXmark", + "svgName": "hand-point-up", + "componentName": "HandPointUp", "keywords": [ - "xmark", - "close", - "delete", - "remove" + "hand", + "point", + "finger", + "touch", + "arm" ] }, { - "name": "circle-check", + "name": "header", "style": "regular", - "svgName": "circle-check", - "componentName": "CircleCheck", + "svgName": "header", + "componentName": "Header", "keywords": [ - "check" + "header", + "text" ] }, { - "name": "square-plus", + "name": "heart", "style": "regular", - "svgName": "square-plus", - "componentName": "SquarePlus", + "svgName": "heart", + "componentName": "Heart", "keywords": [ - "plus", - "add", - "new" + "heart", + "like" ] }, { - "name": "square-minus", - "style": "regular", - "svgName": "square-minus", - "componentName": "SquareMinus", + "name": "heart", + "style": "fill", + "svgName": "heart-fill", + "componentName": "HeartFill", "keywords": [ - "minus", - "remove", - "delete" + "heart", + "like" ] }, { - "name": "square-xmark", + "name": "heart-pulse", "style": "regular", - "svgName": "square-xmark", - "componentName": "SquareXmark", + "svgName": "heart-pulse", + "componentName": "HeartPulse", "keywords": [ - "xmark", - "close", - "delete", - "remove" + "heart", + "pulse" ] }, { - "name": "square-checkmark", + "name": "home", "style": "regular", - "svgName": "square-checkmark", - "componentName": "SquareCheckmark", + "svgName": "home", + "componentName": "Home", "keywords": [ - "check" + "home" ] }, { - "name": "folders", + "name": "italic", "style": "regular", - "svgName": "folders", - "componentName": "Folders", + "svgName": "italic", + "componentName": "Italic", "keywords": [ - "folders" + "italic", + "text" ] }, { - "name": "folder-tree", + "name": "key", "style": "regular", - "svgName": "folder-tree", - "componentName": "FolderTree", + "svgName": "key", + "componentName": "Key", "keywords": [ - "folders", - "tree" + "key", + "security" ] }, { - "name": "folder", + "name": "link", "style": "regular", - "svgName": "folder", - "componentName": "Folder", - "keywords": [ - "folder" - ] - }, - { - "name": "folder", - "style": "fill", - "svgName": "folder-fill", - "componentName": "FolderFill", + "svgName": "link", + "componentName": "Link", "keywords": [ - "folder" + "link", + "chain" ] }, { - "name": "trash", + "name": "lock", "style": "regular", - "svgName": "trash", - "componentName": "Trash", + "svgName": "lock", + "componentName": "Lock", "keywords": [ - "trash", - "delete", - "remove" + "lock", + "security" ] }, { - "name": "logo-yandex", + "name": "lock-open", "style": "regular", - "svgName": "logo-yandex", - "componentName": "LogoYandex", + "svgName": "lock-open", + "componentName": "LockOpen", "keywords": [ - "logo", - "yandex" + "lock", + "open", + "security" ] }, { - "name": "logo-yandex-cloud", + "name": "logo-gitlab", "style": "regular", - "svgName": "logo-yandex-cloud", - "componentName": "LogoYandexCloud", + "svgName": "logo-gitlab", + "componentName": "LogoGitlab", "keywords": [ "logo", - "yandex", - "cloud" + "gitlab" ] }, { - "name": "logo-telegram", + "name": "logo-macos", "style": "regular", - "svgName": "logo-telegram", - "componentName": "LogoTelegram", + "svgName": "logo-macos", + "componentName": "LogoMacos", "keywords": [ "logo", - "telegram" + "macos" ] }, { @@ -1068,13 +970,13 @@ ] }, { - "name": "logo-gitlab", + "name": "logo-telegram", "style": "regular", - "svgName": "logo-gitlab", - "componentName": "LogoGitlab", + "svgName": "logo-telegram", + "componentName": "LogoTelegram", "keywords": [ "logo", - "gitlab" + "telegram" ] }, { @@ -1088,185 +990,450 @@ ] }, { - "name": "logo-macos", + "name": "logo-yandex", "style": "regular", - "svgName": "logo-macos", - "componentName": "LogoMacos", + "svgName": "logo-yandex", + "componentName": "LogoYandex", "keywords": [ "logo", - "macos" + "yandex" ] }, { - "name": "chevron-up", + "name": "logo-yandex-cloud", "style": "regular", - "svgName": "chevron-up", - "componentName": "ChevronUp", + "svgName": "logo-yandex-cloud", + "componentName": "LogoYandexCloud", "keywords": [ - "chevron", - "up" + "logo", + "yandex", + "cloud" ] }, { - "name": "chevron-down", + "name": "magnifier", "style": "regular", - "svgName": "chevron-down", - "componentName": "ChevronDown", + "svgName": "magnifier", + "componentName": "Magnifier", "keywords": [ - "chevron", - "down" + "magnifier", + "magnifying", + "glass", + "search" ] }, { - "name": "chevron-right", + "name": "microphone", "style": "regular", - "svgName": "chevron-right", - "componentName": "ChevronRight", + "svgName": "microphone", + "componentName": "Microphone", "keywords": [ - "chevron", - "right" + "microphone", + "mic" ] }, { - "name": "chevron-left", + "name": "microphone-slash", "style": "regular", - "svgName": "chevron-left", - "componentName": "ChevronLeft", + "svgName": "microphone-slash", + "componentName": "MicrophoneSlash", "keywords": [ - "chevron", - "left" + "microphone", + "slash", + "mic" ] }, { - "name": "geo-polygons", + "name": "minus", "style": "regular", - "svgName": "geo-polygons", - "componentName": "GeoPolygons", + "svgName": "minus", + "componentName": "Minus", "keywords": [ - "geo", - "polygons" + "minus", + "remove", + "delete" ] }, { - "name": "geo", + "name": "nodes", "style": "regular", - "svgName": "geo", - "componentName": "Geo", + "svgName": "nodes", + "componentName": "Nodes", "keywords": [ - "geo" + "nodes", + "instance" ] }, { - "name": "geo-dots", + "name": "nodes-loop", "style": "regular", - "svgName": "geo-dots", - "componentName": "GeoDots", + "svgName": "nodes-loop", + "componentName": "NodesLoop", "keywords": [ - "geo", - "dots" + "code" ] }, { - "name": "geo-pin", + "name": "paper-clip", "style": "regular", - "svgName": "geo-pin", - "componentName": "GeoPin", + "svgName": "paper-clip", + "componentName": "PaperClip", + "keywords": [ + "paper", + "clip", + "attach" + ] + }, + { + "name": "pencil-to-square", + "style": "regular", + "svgName": "pencil-to-square", + "componentName": "PencilToSquare", + "keywords": [ + "edit", + "pencil" + ] + }, + { + "name": "person", + "style": "regular", + "svgName": "person", + "componentName": "Person", + "keywords": [ + "person", + "profile", + "man" + ] + }, + { + "name": "person-magnifier", + "style": "regular", + "svgName": "person-magnifier", + "componentName": "PersonMagnifier", + "keywords": [ + "person", + "profile", + "man", + "magnifier", + "magnifying", + "glass", + "search" + ] + }, + { + "name": "person-pencil", + "style": "regular", + "svgName": "person-pencil", + "componentName": "PersonPencil", + "keywords": [ + "person", + "pencil", + "profile", + "man", + "edit" + ] + }, + { + "name": "person-plus", + "style": "regular", + "svgName": "person-plus", + "componentName": "PersonPlus", + "keywords": [ + "person", + "plus", + "profile", + "man", + "add" + ] + }, + { + "name": "person-work", + "style": "regular", + "svgName": "person-work", + "componentName": "PersonWork", + "keywords": [ + "person", + "profile", + "man", + "work" + ] + }, + { + "name": "person-xmark", + "style": "regular", + "svgName": "person-xmark", + "componentName": "PersonXmark", + "keywords": [ + "person", + "xmark", + "profile", + "man", + "remove", + "delete" + ] + }, + { + "name": "persons", + "style": "regular", + "svgName": "persons", + "componentName": "Persons", + "keywords": [ + "persons", + "group", + "team" + ] + }, + { + "name": "picture", + "style": "regular", + "svgName": "picture", + "componentName": "Picture", + "keywords": [ + "picture", + "image", + "photo" + ] + }, + { + "name": "pin", + "style": "regular", + "svgName": "pin", + "componentName": "Pin", "keywords": [ - "geo", "pin" ] }, { - "name": "arrow-down-to-square", + "name": "pin", + "style": "fill", + "svgName": "pin-fill", + "componentName": "PinFill", + "keywords": [ + "pin" + ] + }, + { + "name": "plus", "style": "regular", - "svgName": "arrow-down-to-square", - "componentName": "ArrowDownToSquare", + "svgName": "plus", + "componentName": "Plus", "keywords": [ - "arrow", - "down", - "square", - "import" + "plus", + "add", + "new" ] }, { - "name": "arrow-right-to-square", + "name": "shield", "style": "regular", - "svgName": "arrow-right-to-square", - "componentName": "ArrowRightToSquare", + "svgName": "shield", + "componentName": "Shield", "keywords": [ - "arrow", - "right", - "square", - "enter" + "shield", + "security" ] }, { - "name": "arrow-up-from-square", + "name": "shield-check", "style": "regular", - "svgName": "arrow-up-from-square", - "componentName": "ArrowUpFromSquare", + "svgName": "shield-check", + "componentName": "ShieldCheck", "keywords": [ - "arrow", - "up", - "square", - "export", - "share" + "shield", + "check", + "security" ] }, { - "name": "arrow-right-from-square", + "name": "shield-exclamation", "style": "regular", - "svgName": "arrow-right-from-square", - "componentName": "ArrowRightFromSquare", + "svgName": "shield-exclamation", + "componentName": "ShieldExclamation", "keywords": [ - "arrow", - "right", - "square", - "exit" + "shield", + "exclamation", + "security", + "attention", + "warning" ] }, { - "name": "arrow-right-up-from-square", + "name": "shield-keyhole", "style": "regular", - "svgName": "arrow-right-up-from-square", - "componentName": "ArrowRightUpFromSquare", + "svgName": "shield-keyhole", + "componentName": "ShieldKeyhole", "keywords": [ - "arrow", - "right", - "up", - "square", - "new", - "window" + "shield", + "keyhole", + "security" ] }, { - "name": "bold", + "name": "shopping-bag", "style": "regular", - "svgName": "bold", - "componentName": "Bold", + "svgName": "shopping-bag", + "componentName": "ShoppingBag", "keywords": [ - "bold", - "text" + "shopping", + "bag" ] }, { - "name": "italic", + "name": "shopping-basket", "style": "regular", - "svgName": "italic", - "componentName": "Italic", + "svgName": "shopping-basket", + "componentName": "ShoppingBasket", "keywords": [ - "italic", - "text" + "shopping", + "basket" ] }, { - "name": "underline", + "name": "sliders", "style": "regular", - "svgName": "underline", - "componentName": "Underline", + "svgName": "sliders", + "componentName": "Sliders", "keywords": [ - "underline", - "text" + "sliders", + "setting", + "customization", + "tuning" + ] + }, + { + "name": "smart-phone", + "style": "regular", + "svgName": "smart-phone", + "componentName": "SmartPhone", + "keywords": [ + "smart", + "phone" + ] + }, + { + "name": "speaker-wave-0", + "style": "regular", + "svgName": "speaker-wave-0", + "componentName": "SpeakerWave0", + "keywords": [ + "speaker", + "volume" + ] + }, + { + "name": "speaker-wave-1", + "style": "regular", + "svgName": "speaker-wave-1", + "componentName": "SpeakerWave1", + "keywords": [ + "speaker", + "volume" + ] + }, + { + "name": "speaker-wave-2", + "style": "regular", + "svgName": "speaker-wave-2", + "componentName": "SpeakerWave2", + "keywords": [ + "speaker", + "volume" + ] + }, + { + "name": "speaker-xmark", + "style": "regular", + "svgName": "speaker-xmark", + "componentName": "SpeakerXmark", + "keywords": [ + "speaker", + "xmark", + "volume", + "mute" + ] + }, + { + "name": "square-check", + "style": "regular", + "svgName": "square-check", + "componentName": "SquareCheck", + "keywords": [ + "check" + ] + }, + { + "name": "square-exclamation", + "style": "regular", + "svgName": "square-exclamation", + "componentName": "SquareExclamation", + "keywords": [ + "exclamation", + "attention", + "warning" + ] + }, + { + "name": "square-minus", + "style": "regular", + "svgName": "square-minus", + "componentName": "SquareMinus", + "keywords": [ + "minus", + "remove", + "delete" + ] + }, + { + "name": "square-plus", + "style": "regular", + "svgName": "square-plus", + "componentName": "SquarePlus", + "keywords": [ + "plus", + "add", + "new" + ] + }, + { + "name": "square-xmark", + "style": "regular", + "svgName": "square-xmark", + "componentName": "SquareXmark", + "keywords": [ + "xmark", + "close", + "delete", + "remove" + ] + }, + { + "name": "star", + "style": "regular", + "svgName": "star", + "componentName": "Star", + "keywords": [ + "star", + "favourites" + ] + }, + { + "name": "star", + "style": "fill", + "svgName": "star-fill", + "componentName": "StarFill", + "keywords": [ + "star", + "favourites" + ] + }, + { + "name": "sticker", + "style": "regular", + "svgName": "sticker", + "componentName": "Sticker", + "keywords": [ + "sticker", + "paper" ] }, { @@ -1280,62 +1447,167 @@ ] }, { - "name": "header", + "name": "suitcase", "style": "regular", - "svgName": "header", - "componentName": "Header", + "svgName": "suitcase", + "componentName": "Suitcase", "keywords": [ - "header", - "text" + "suitcase" ] }, { - "name": "dots-3", + "name": "terminal", "style": "regular", - "svgName": "dots-3", - "componentName": "Dots3", + "svgName": "terminal", + "componentName": "Terminal", "keywords": [ - "dots", - "3" + "terminal", + "console" ] }, { - "name": "dots-3-vert", + "name": "thumbs-down", "style": "regular", - "svgName": "dots-3-vert", - "componentName": "Dots3Vert", + "svgName": "thumbs-down", + "componentName": "ThumbsDown", "keywords": [ - "dots", - "3" + "thumb", + "dislike", + "arm" ] }, { - "name": "dots-6-vert", + "name": "thumbs-down", + "style": "fill", + "svgName": "thumbs-down-fill", + "componentName": "ThumbsDownFill", + "keywords": [ + "thumb", + "dislike", + "arm" + ] + }, + { + "name": "thumbs-up", "style": "regular", - "svgName": "dots-6-vert", - "componentName": "Dots6Vert", + "svgName": "thumbs-up", + "componentName": "ThumbsUp", "keywords": [ - "dots", - "6" + "thumb", + "like", + "arm" ] }, { - "name": "dots-6", + "name": "thumbs-up", + "style": "fill", + "svgName": "thumbs-up-fill", + "componentName": "ThumbsUpFill", + "keywords": [ + "thumb", + "like", + "arm" + ] + }, + { + "name": "thunderbolt", "style": "regular", - "svgName": "dots-6", - "componentName": "Dots6", + "svgName": "thunderbolt", + "componentName": "Thunderbolt", "keywords": [ - "dots", - "6" + "thunderbolt", + "bolt", + "flash", + "lightning", + "electricity" ] }, { - "name": "circles-4", + "name": "thunderbolt", + "style": "fill", + "svgName": "thunderbolt-fill", + "componentName": "ThunderboltFill", + "keywords": [ + "thunderbolt", + "bolt", + "flash", + "lightning", + "electricity" + ] + }, + { + "name": "trash", "style": "regular", - "svgName": "circles-4", - "componentName": "Circles4", + "svgName": "trash", + "componentName": "Trash", "keywords": [ - "circles" + "trash", + "delete", + "remove" + ] + }, + { + "name": "triangle-exclamation", + "style": "regular", + "svgName": "triangle-exclamation", + "componentName": "TriangleExclamation", + "keywords": [ + "exclamation", + "attention", + "warning" + ] + }, + { + "name": "triangle-exclamation", + "style": "fill", + "svgName": "triangle-exclamation-fill", + "componentName": "TriangleExclamationFill", + "keywords": [ + "exclamation", + "attention", + "warning" + ] + }, + { + "name": "trolley", + "style": "regular", + "svgName": "trolley", + "componentName": "Trolley", + "keywords": [ + "trolley", + "cart" + ] + }, + { + "name": "underline", + "style": "regular", + "svgName": "underline", + "componentName": "Underline", + "keywords": [ + "underline", + "text" + ] + }, + { + "name": "video", + "style": "regular", + "svgName": "video", + "componentName": "Video", + "keywords": [ + "video", + "camera" + ] + }, + { + "name": "xmark", + "style": "regular", + "svgName": "xmark", + "componentName": "Xmark", + "keywords": [ + "xmark", + "close", + "delete", + "remove" ] } ] diff --git a/svgs/arrow-2-clockwise.svg b/svgs/arrow-2-clockwise.svg new file mode 100644 index 0000000..3b740a2 --- /dev/null +++ b/svgs/arrow-2-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-3-clockwise.svg b/svgs/arrow-3-clockwise.svg new file mode 100644 index 0000000..dbc532f --- /dev/null +++ b/svgs/arrow-3-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-clockwise.svg b/svgs/arrow-clockwise.svg new file mode 100644 index 0000000..d4f3df9 --- /dev/null +++ b/svgs/arrow-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bell-badge.svg b/svgs/bell-dot.svg similarity index 100% rename from svgs/bell-badge.svg rename to svgs/bell-dot.svg diff --git a/svgs/ladybug.svg b/svgs/bug.svg similarity index 100% rename from svgs/ladybug.svg rename to svgs/bug.svg diff --git a/svgs/camera.svg b/svgs/camera.svg new file mode 100644 index 0000000..2db335d --- /dev/null +++ b/svgs/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/cart.svg b/svgs/cart.svg new file mode 100644 index 0000000..5696311 --- /dev/null +++ b/svgs/cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/case.svg b/svgs/case.svg new file mode 100644 index 0000000..8605d34 --- /dev/null +++ b/svgs/case.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/circle-pause.svg b/svgs/circle-pause.svg new file mode 100644 index 0000000..c401c2a --- /dev/null +++ b/svgs/circle-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/circle-play.svg b/svgs/circle-play.svg new file mode 100644 index 0000000..39bee9d --- /dev/null +++ b/svgs/circle-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/circle-stop.svg b/svgs/circle-stop.svg new file mode 100644 index 0000000..15ffaa7 --- /dev/null +++ b/svgs/circle-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/clock.svg b/svgs/clock.svg new file mode 100644 index 0000000..29defcc --- /dev/null +++ b/svgs/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/creditcard.svg b/svgs/creditcard.svg new file mode 100644 index 0000000..2b6992c --- /dev/null +++ b/svgs/creditcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/display-pulse.svg b/svgs/display-pulse.svg new file mode 100644 index 0000000..d5a9ee5 --- /dev/null +++ b/svgs/display-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/display.svg b/svgs/display.svg new file mode 100644 index 0000000..18974fc --- /dev/null +++ b/svgs/display.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/eye-slash.svg b/svgs/eye-slash.svg new file mode 100644 index 0000000..cacecb1 --- /dev/null +++ b/svgs/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/eye.svg b/svgs/eye.svg new file mode 100644 index 0000000..8b6a410 --- /dev/null +++ b/svgs/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/microphone-slash.svg b/svgs/microphone-slash.svg new file mode 100644 index 0000000..5a6308d --- /dev/null +++ b/svgs/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/microphone.svg b/svgs/microphone.svg new file mode 100644 index 0000000..eb535d9 --- /dev/null +++ b/svgs/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/shopping-bag.svg b/svgs/shopping-bag.svg new file mode 100644 index 0000000..518a191 --- /dev/null +++ b/svgs/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/shopping-basket.svg b/svgs/shopping-basket.svg new file mode 100644 index 0000000..01fd59c --- /dev/null +++ b/svgs/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/smart-phone.svg b/svgs/smart-phone.svg new file mode 100644 index 0000000..808b1c5 --- /dev/null +++ b/svgs/smart-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/speaker-wave-0.svg b/svgs/speaker-wave-0.svg new file mode 100644 index 0000000..1c4f190 --- /dev/null +++ b/svgs/speaker-wave-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/speaker-wave-1.svg b/svgs/speaker-wave-1.svg new file mode 100644 index 0000000..2409d3b --- /dev/null +++ b/svgs/speaker-wave-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/speaker-wave-2.svg b/svgs/speaker-wave-2.svg new file mode 100644 index 0000000..e6b33b0 --- /dev/null +++ b/svgs/speaker-wave-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/speaker-xmark.svg b/svgs/speaker-xmark.svg new file mode 100644 index 0000000..5b69a4c --- /dev/null +++ b/svgs/speaker-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/square-checkmark.svg b/svgs/square-check.svg similarity index 100% rename from svgs/square-checkmark.svg rename to svgs/square-check.svg diff --git a/svgs/suitcase.svg b/svgs/suitcase.svg new file mode 100644 index 0000000..f6e88d6 --- /dev/null +++ b/svgs/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/trolley.svg b/svgs/trolley.svg new file mode 100644 index 0000000..3e3a643 --- /dev/null +++ b/svgs/trolley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/video.svg b/svgs/video.svg new file mode 100644 index 0000000..428d73b --- /dev/null +++ b/svgs/video.svg @@ -0,0 +1 @@ + \ No newline at end of file