From 76ec30b01de1906b2a1acd6f47c1be07e92ec6d6 Mon Sep 17 00:00:00 2001 From: Gravity UI Bot <111915794+gravity-ui-bot@users.noreply.github.com> Date: Tue, 31 Oct 2023 00:31:59 +0300 Subject: [PATCH] feat: sync icons (#34) Co-authored-by: amje --- lib/ArrowsRotateLeftSlash.tsx | 18 ++ lib/ArrowsRotateRightSlash.tsx | 20 ++ lib/BarsAscendingAlignLeftArrowDown.tsx | 27 ++ lib/BarsAscendingAlignLeftArrowUp.tsx | 27 ++ lib/BarsDescendingAlignLeftArrowDown.tsx | 20 ++ lib/BarsDescendingAlignLeftArrowUp.tsx | 20 ++ lib/BellSlash.tsx | 20 ++ lib/Car.tsx | 20 ++ lib/CardClub.tsx | 20 ++ lib/CardDiamond.tsx | 20 ++ lib/CardHeart.tsx | 20 ++ lib/CardSpade.tsx | 20 ++ lib/CloudGear.tsx | 20 ++ lib/CloudNutHex.tsx | 20 ++ lib/DatabaseArrowRight.tsx | 20 ++ lib/EnvelopeOpenXmark.tsx | 20 ++ lib/FaceNeutralDashed.tsx | 20 ++ lib/FileRuble.tsx | 20 ++ lib/LayoutSideContentLeft.tsx | 20 ++ lib/LayoutSideContentRight.tsx | 20 ++ lib/LayoutSplitColumns.tsx | 20 ++ lib/LayoutSplitColumns3.tsx | 20 ++ lib/LayoutSplitRows.tsx | 20 ++ lib/LayoutSplitSideContentLeft.tsx | 20 ++ lib/LayoutSplitSideContentRight.tsx | 20 ++ lib/NutHex.tsx | 20 ++ lib/PersonGear.tsx | 27 ++ lib/PersonNutHex.tsx | 20 ++ lib/index.ts | 28 +++ metadata.json | 237 +++++++++++++++++- svgs/arrows-rotate-left-slash.svg | 1 + svgs/arrows-rotate-right-slash.svg | 1 + svgs/bars-ascending-align-left-arrow-down.svg | 1 + svgs/bars-ascending-align-left-arrow-up.svg | 1 + .../bars-descending-align-left-arrow-down.svg | 1 + svgs/bars-descending-align-left-arrow-up.svg | 1 + svgs/bell-slash.svg | 1 + svgs/car.svg | 1 + svgs/card-club.svg | 1 + svgs/card-diamond.svg | 1 + svgs/card-heart.svg | 1 + svgs/card-spade.svg | 1 + svgs/cloud-gear.svg | 1 + svgs/cloud-nut-hex.svg | 1 + svgs/database-arrow-right.svg | 1 + svgs/envelope-open-xmark.svg | 1 + svgs/face-neutral-dashed.svg | 1 + svgs/file-ruble.svg | 1 + svgs/layout-side-content-left.svg | 1 + svgs/layout-side-content-right.svg | 1 + svgs/layout-split-columns-3.svg | 1 + svgs/layout-split-columns.svg | 1 + svgs/layout-split-rows.svg | 1 + svgs/layout-split-side-content-left.svg | 1 + svgs/layout-split-side-content-right.svg | 1 + svgs/nut-hex.svg | 1 + svgs/person-gear.svg | 1 + svgs/person-nut-hex.svg | 1 + 58 files changed, 869 insertions(+), 3 deletions(-) create mode 100644 lib/ArrowsRotateLeftSlash.tsx create mode 100644 lib/ArrowsRotateRightSlash.tsx create mode 100644 lib/BarsAscendingAlignLeftArrowDown.tsx create mode 100644 lib/BarsAscendingAlignLeftArrowUp.tsx create mode 100644 lib/BarsDescendingAlignLeftArrowDown.tsx create mode 100644 lib/BarsDescendingAlignLeftArrowUp.tsx create mode 100644 lib/BellSlash.tsx create mode 100644 lib/Car.tsx create mode 100644 lib/CardClub.tsx create mode 100644 lib/CardDiamond.tsx create mode 100644 lib/CardHeart.tsx create mode 100644 lib/CardSpade.tsx create mode 100644 lib/CloudGear.tsx create mode 100644 lib/CloudNutHex.tsx create mode 100644 lib/DatabaseArrowRight.tsx create mode 100644 lib/EnvelopeOpenXmark.tsx create mode 100644 lib/FaceNeutralDashed.tsx create mode 100644 lib/FileRuble.tsx create mode 100644 lib/LayoutSideContentLeft.tsx create mode 100644 lib/LayoutSideContentRight.tsx create mode 100644 lib/LayoutSplitColumns.tsx create mode 100644 lib/LayoutSplitColumns3.tsx create mode 100644 lib/LayoutSplitRows.tsx create mode 100644 lib/LayoutSplitSideContentLeft.tsx create mode 100644 lib/LayoutSplitSideContentRight.tsx create mode 100644 lib/NutHex.tsx create mode 100644 lib/PersonGear.tsx create mode 100644 lib/PersonNutHex.tsx create mode 100644 svgs/arrows-rotate-left-slash.svg create mode 100644 svgs/arrows-rotate-right-slash.svg create mode 100644 svgs/bars-ascending-align-left-arrow-down.svg create mode 100644 svgs/bars-ascending-align-left-arrow-up.svg create mode 100644 svgs/bars-descending-align-left-arrow-down.svg create mode 100644 svgs/bars-descending-align-left-arrow-up.svg create mode 100644 svgs/bell-slash.svg create mode 100644 svgs/car.svg create mode 100644 svgs/card-club.svg create mode 100644 svgs/card-diamond.svg create mode 100644 svgs/card-heart.svg create mode 100644 svgs/card-spade.svg create mode 100644 svgs/cloud-gear.svg create mode 100644 svgs/cloud-nut-hex.svg create mode 100644 svgs/database-arrow-right.svg create mode 100644 svgs/envelope-open-xmark.svg create mode 100644 svgs/face-neutral-dashed.svg create mode 100644 svgs/file-ruble.svg create mode 100644 svgs/layout-side-content-left.svg create mode 100644 svgs/layout-side-content-right.svg create mode 100644 svgs/layout-split-columns-3.svg create mode 100644 svgs/layout-split-columns.svg create mode 100644 svgs/layout-split-rows.svg create mode 100644 svgs/layout-split-side-content-left.svg create mode 100644 svgs/layout-split-side-content-right.svg create mode 100644 svgs/nut-hex.svg create mode 100644 svgs/person-gear.svg create mode 100644 svgs/person-nut-hex.svg diff --git a/lib/ArrowsRotateLeftSlash.tsx b/lib/ArrowsRotateLeftSlash.tsx new file mode 100644 index 0000000..2c8db6b --- /dev/null +++ b/lib/ArrowsRotateLeftSlash.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const ArrowsRotateLeftSlash = (props: SVGProps) => ( + + + + + + +); +export default ArrowsRotateLeftSlash; diff --git a/lib/ArrowsRotateRightSlash.tsx b/lib/ArrowsRotateRightSlash.tsx new file mode 100644 index 0000000..12f4250 --- /dev/null +++ b/lib/ArrowsRotateRightSlash.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const ArrowsRotateRightSlash = (props: SVGProps) => ( + + + +); +export default ArrowsRotateRightSlash; diff --git a/lib/BarsAscendingAlignLeftArrowDown.tsx b/lib/BarsAscendingAlignLeftArrowDown.tsx new file mode 100644 index 0000000..ecb8a0c --- /dev/null +++ b/lib/BarsAscendingAlignLeftArrowDown.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const BarsAscendingAlignLeftArrowDown = (props: SVGProps) => ( + + + + +); +export default BarsAscendingAlignLeftArrowDown; diff --git a/lib/BarsAscendingAlignLeftArrowUp.tsx b/lib/BarsAscendingAlignLeftArrowUp.tsx new file mode 100644 index 0000000..94b4ee1 --- /dev/null +++ b/lib/BarsAscendingAlignLeftArrowUp.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const BarsAscendingAlignLeftArrowUp = (props: SVGProps) => ( + + + + +); +export default BarsAscendingAlignLeftArrowUp; diff --git a/lib/BarsDescendingAlignLeftArrowDown.tsx b/lib/BarsDescendingAlignLeftArrowDown.tsx new file mode 100644 index 0000000..148b096 --- /dev/null +++ b/lib/BarsDescendingAlignLeftArrowDown.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const BarsDescendingAlignLeftArrowDown = (props: SVGProps) => ( + + + +); +export default BarsDescendingAlignLeftArrowDown; diff --git a/lib/BarsDescendingAlignLeftArrowUp.tsx b/lib/BarsDescendingAlignLeftArrowUp.tsx new file mode 100644 index 0000000..6efd33b --- /dev/null +++ b/lib/BarsDescendingAlignLeftArrowUp.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const BarsDescendingAlignLeftArrowUp = (props: SVGProps) => ( + + + +); +export default BarsDescendingAlignLeftArrowUp; diff --git a/lib/BellSlash.tsx b/lib/BellSlash.tsx new file mode 100644 index 0000000..ffaa876 --- /dev/null +++ b/lib/BellSlash.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const BellSlash = (props: SVGProps) => ( + + + +); +export default BellSlash; diff --git a/lib/Car.tsx b/lib/Car.tsx new file mode 100644 index 0000000..67f5164 --- /dev/null +++ b/lib/Car.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const Car = (props: SVGProps) => ( + + + +); +export default Car; diff --git a/lib/CardClub.tsx b/lib/CardClub.tsx new file mode 100644 index 0000000..50acead --- /dev/null +++ b/lib/CardClub.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CardClub = (props: SVGProps) => ( + + + +); +export default CardClub; diff --git a/lib/CardDiamond.tsx b/lib/CardDiamond.tsx new file mode 100644 index 0000000..86e7675 --- /dev/null +++ b/lib/CardDiamond.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CardDiamond = (props: SVGProps) => ( + + + +); +export default CardDiamond; diff --git a/lib/CardHeart.tsx b/lib/CardHeart.tsx new file mode 100644 index 0000000..6601260 --- /dev/null +++ b/lib/CardHeart.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CardHeart = (props: SVGProps) => ( + + + +); +export default CardHeart; diff --git a/lib/CardSpade.tsx b/lib/CardSpade.tsx new file mode 100644 index 0000000..bb3ccb5 --- /dev/null +++ b/lib/CardSpade.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CardSpade = (props: SVGProps) => ( + + + +); +export default CardSpade; diff --git a/lib/CloudGear.tsx b/lib/CloudGear.tsx new file mode 100644 index 0000000..2ff56f4 --- /dev/null +++ b/lib/CloudGear.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CloudGear = (props: SVGProps) => ( + + + +); +export default CloudGear; diff --git a/lib/CloudNutHex.tsx b/lib/CloudNutHex.tsx new file mode 100644 index 0000000..506ef16 --- /dev/null +++ b/lib/CloudNutHex.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const CloudNutHex = (props: SVGProps) => ( + + + +); +export default CloudNutHex; diff --git a/lib/DatabaseArrowRight.tsx b/lib/DatabaseArrowRight.tsx new file mode 100644 index 0000000..9ad02c7 --- /dev/null +++ b/lib/DatabaseArrowRight.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const DatabaseArrowRight = (props: SVGProps) => ( + + + +); +export default DatabaseArrowRight; diff --git a/lib/EnvelopeOpenXmark.tsx b/lib/EnvelopeOpenXmark.tsx new file mode 100644 index 0000000..4f22a1a --- /dev/null +++ b/lib/EnvelopeOpenXmark.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const EnvelopeOpenXmark = (props: SVGProps) => ( + + + +); +export default EnvelopeOpenXmark; diff --git a/lib/FaceNeutralDashed.tsx b/lib/FaceNeutralDashed.tsx new file mode 100644 index 0000000..872d286 --- /dev/null +++ b/lib/FaceNeutralDashed.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const FaceNeutralDashed = (props: SVGProps) => ( + + + +); +export default FaceNeutralDashed; diff --git a/lib/FileRuble.tsx b/lib/FileRuble.tsx new file mode 100644 index 0000000..d81ae10 --- /dev/null +++ b/lib/FileRuble.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const FileRuble = (props: SVGProps) => ( + + + +); +export default FileRuble; diff --git a/lib/LayoutSideContentLeft.tsx b/lib/LayoutSideContentLeft.tsx new file mode 100644 index 0000000..b55335a --- /dev/null +++ b/lib/LayoutSideContentLeft.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSideContentLeft = (props: SVGProps) => ( + + + +); +export default LayoutSideContentLeft; diff --git a/lib/LayoutSideContentRight.tsx b/lib/LayoutSideContentRight.tsx new file mode 100644 index 0000000..e377fd0 --- /dev/null +++ b/lib/LayoutSideContentRight.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSideContentRight = (props: SVGProps) => ( + + + +); +export default LayoutSideContentRight; diff --git a/lib/LayoutSplitColumns.tsx b/lib/LayoutSplitColumns.tsx new file mode 100644 index 0000000..dfd8d00 --- /dev/null +++ b/lib/LayoutSplitColumns.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSplitColumns = (props: SVGProps) => ( + + + +); +export default LayoutSplitColumns; diff --git a/lib/LayoutSplitColumns3.tsx b/lib/LayoutSplitColumns3.tsx new file mode 100644 index 0000000..755eb66 --- /dev/null +++ b/lib/LayoutSplitColumns3.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSplitColumns3 = (props: SVGProps) => ( + + + +); +export default LayoutSplitColumns3; diff --git a/lib/LayoutSplitRows.tsx b/lib/LayoutSplitRows.tsx new file mode 100644 index 0000000..349349a --- /dev/null +++ b/lib/LayoutSplitRows.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSplitRows = (props: SVGProps) => ( + + + +); +export default LayoutSplitRows; diff --git a/lib/LayoutSplitSideContentLeft.tsx b/lib/LayoutSplitSideContentLeft.tsx new file mode 100644 index 0000000..b5ce9e5 --- /dev/null +++ b/lib/LayoutSplitSideContentLeft.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSplitSideContentLeft = (props: SVGProps) => ( + + + +); +export default LayoutSplitSideContentLeft; diff --git a/lib/LayoutSplitSideContentRight.tsx b/lib/LayoutSplitSideContentRight.tsx new file mode 100644 index 0000000..a458cde --- /dev/null +++ b/lib/LayoutSplitSideContentRight.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const LayoutSplitSideContentRight = (props: SVGProps) => ( + + + +); +export default LayoutSplitSideContentRight; diff --git a/lib/NutHex.tsx b/lib/NutHex.tsx new file mode 100644 index 0000000..0f43bbc --- /dev/null +++ b/lib/NutHex.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const NutHex = (props: SVGProps) => ( + + + +); +export default NutHex; diff --git a/lib/PersonGear.tsx b/lib/PersonGear.tsx new file mode 100644 index 0000000..e116fef --- /dev/null +++ b/lib/PersonGear.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const PersonGear = (props: SVGProps) => ( + + + + + + + + + + +); +export default PersonGear; diff --git a/lib/PersonNutHex.tsx b/lib/PersonNutHex.tsx new file mode 100644 index 0000000..c5bea0f --- /dev/null +++ b/lib/PersonNutHex.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import {SVGProps} from 'react'; +const PersonNutHex = (props: SVGProps) => ( + + + +); +export default PersonNutHex; diff --git a/lib/index.ts b/lib/index.ts index 971d7bb..8ca3307 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -53,20 +53,27 @@ export {default as Arrows3RotateLeftLetterA} from './Arrows3RotateLeftLetterA'; export {default as Arrows3RotateRight} from './Arrows3RotateRight'; export {default as ArrowsOppositeToDots} from './ArrowsOppositeToDots'; export {default as ArrowsRotateLeft} from './ArrowsRotateLeft'; +export {default as ArrowsRotateLeftSlash} from './ArrowsRotateLeftSlash'; export {default as ArrowsRotateRight} from './ArrowsRotateRight'; +export {default as ArrowsRotateRightSlash} from './ArrowsRotateRightSlash'; export {default as At} from './At'; export {default as Ban} from './Ban'; export {default as Bars} from './Bars'; export {default as BarsAscendingAlignCenter} from './BarsAscendingAlignCenter'; export {default as BarsAscendingAlignLeft} from './BarsAscendingAlignLeft'; +export {default as BarsAscendingAlignLeftArrowDown} from './BarsAscendingAlignLeftArrowDown'; +export {default as BarsAscendingAlignLeftArrowUp} from './BarsAscendingAlignLeftArrowUp'; export {default as BarsAscendingAlignRight} from './BarsAscendingAlignRight'; export {default as BarsDescendingAlignCenter} from './BarsDescendingAlignCenter'; export {default as BarsDescendingAlignLeft} from './BarsDescendingAlignLeft'; +export {default as BarsDescendingAlignLeftArrowDown} from './BarsDescendingAlignLeftArrowDown'; +export {default as BarsDescendingAlignLeftArrowUp} from './BarsDescendingAlignLeftArrowUp'; export {default as BarsDescendingAlignRight} from './BarsDescendingAlignRight'; export {default as BarsPlay} from './BarsPlay'; export {default as BarsUnaligned} from './BarsUnaligned'; export {default as Bell} from './Bell'; export {default as BellDot} from './BellDot'; +export {default as BellSlash} from './BellSlash'; export {default as Bold} from './Bold'; export {default as Book} from './Book'; export {default as BookOpen} from './BookOpen'; @@ -87,6 +94,11 @@ export {default as Bulb} from './Bulb'; export {default as Calculator} from './Calculator'; export {default as Calendar} from './Calendar'; export {default as Camera} from './Camera'; +export {default as Car} from './Car'; +export {default as CardClub} from './CardClub'; +export {default as CardDiamond} from './CardDiamond'; +export {default as CardHeart} from './CardHeart'; +export {default as CardSpade} from './CardSpade'; export {default as CaretDown} from './CaretDown'; export {default as CaretLeft} from './CaretLeft'; export {default as CaretRight} from './CaretRight'; @@ -196,6 +208,8 @@ export {default as ClockFill} from './ClockFill'; export {default as Cloud} from './Cloud'; export {default as CloudArrowUpIn} from './CloudArrowUpIn'; export {default as CloudCheck} from './CloudCheck'; +export {default as CloudGear} from './CloudGear'; +export {default as CloudNutHex} from './CloudNutHex'; export {default as Clouds} from './Clouds'; export {default as Code} from './Code'; export {default as CodeCommit} from './CodeCommit'; @@ -238,6 +252,7 @@ export {default as CurlyBrackets} from './CurlyBrackets'; export {default as CurlyBracketsFunction} from './CurlyBracketsFunction'; export {default as CurlyBracketsLock} from './CurlyBracketsLock'; export {default as Database} from './Database'; +export {default as DatabaseArrowRight} from './DatabaseArrowRight'; export {default as DatabaseMagnifier} from './DatabaseMagnifier'; export {default as Databases} from './Databases'; export {default as Diamond} from './Diamond'; @@ -258,6 +273,7 @@ export {default as Ellipsis} from './Ellipsis'; export {default as EllipsisVertical} from './EllipsisVertical'; export {default as Envelope} from './Envelope'; export {default as EnvelopeOpen} from './EnvelopeOpen'; +export {default as EnvelopeOpenXmark} from './EnvelopeOpenXmark'; export {default as Equal} from './Equal'; export {default as Eraser} from './Eraser'; export {default as ExclamationShape} from './ExclamationShape'; @@ -266,6 +282,7 @@ export {default as EyeSlash} from './EyeSlash'; export {default as FaceAlien} from './FaceAlien'; export {default as FaceFun} from './FaceFun'; export {default as FaceNeutral} from './FaceNeutral'; +export {default as FaceNeutralDashed} from './FaceNeutralDashed'; export {default as FaceRobot} from './FaceRobot'; export {default as FaceSad} from './FaceSad'; export {default as FaceSmile} from './FaceSmile'; @@ -285,6 +302,7 @@ export {default as FileMagnifier} from './FileMagnifier'; export {default as FileMinus} from './FileMinus'; export {default as FilePlus} from './FilePlus'; export {default as FileQuestion} from './FileQuestion'; +export {default as FileRuble} from './FileRuble'; export {default as FileText} from './FileText'; export {default as FileXmark} from './FileXmark'; export {default as FileZipper} from './FileZipper'; @@ -383,6 +401,13 @@ export {default as LayoutList} from './LayoutList'; export {default as LayoutRows} from './LayoutRows'; export {default as LayoutRows3} from './LayoutRows3'; export {default as LayoutSideContent} from './LayoutSideContent'; +export {default as LayoutSideContentLeft} from './LayoutSideContentLeft'; +export {default as LayoutSideContentRight} from './LayoutSideContentRight'; +export {default as LayoutSplitColumns} from './LayoutSplitColumns'; +export {default as LayoutSplitColumns3} from './LayoutSplitColumns3'; +export {default as LayoutSplitRows} from './LayoutSplitRows'; +export {default as LayoutSplitSideContentLeft} from './LayoutSplitSideContentLeft'; +export {default as LayoutSplitSideContentRight} from './LayoutSplitSideContentRight'; export {default as LayoutTabs} from './LayoutTabs'; export {default as LetterGroup} from './LetterGroup'; export {default as LetterM} from './LetterM'; @@ -436,6 +461,7 @@ export {default as NodesDown} from './NodesDown'; export {default as NodesLeft} from './NodesLeft'; export {default as NodesRight} from './NodesRight'; export {default as NodesUp} from './NodesUp'; +export {default as NutHex} from './NutHex'; export {default as ObjectsAlignBottom} from './ObjectsAlignBottom'; export {default as ObjectsAlignCenterHorizontal} from './ObjectsAlignCenterHorizontal'; export {default as ObjectsAlignCenterVertical} from './ObjectsAlignCenterVertical'; @@ -455,7 +481,9 @@ export {default as PencilToLine} from './PencilToLine'; export {default as PencilToSquare} from './PencilToSquare'; export {default as Percent} from './Percent'; export {default as Person} from './Person'; +export {default as PersonGear} from './PersonGear'; export {default as PersonMagnifier} from './PersonMagnifier'; +export {default as PersonNutHex} from './PersonNutHex'; export {default as PersonPencil} from './PersonPencil'; export {default as PersonPlus} from './PersonPlus'; export {default as PersonSpeaker} from './PersonSpeaker'; diff --git a/metadata.json b/metadata.json index 15f5417..41506e5 100644 --- a/metadata.json +++ b/metadata.json @@ -413,6 +413,13 @@ "componentName": "ArrowsRotateLeft", "keywords": [] }, + { + "name": "arrows-rotate-left-slash", + "style": "regular", + "svgName": "arrows-rotate-left-slash", + "componentName": "ArrowsRotateLeftSlash", + "keywords": [] + }, { "name": "arrows-rotate-right", "style": "regular", @@ -420,6 +427,13 @@ "componentName": "ArrowsRotateRight", "keywords": [] }, + { + "name": "arrows-rotate-right-slash", + "style": "regular", + "svgName": "arrows-rotate-right-slash", + "componentName": "ArrowsRotateRightSlash", + "keywords": [] + }, { "name": "at", "style": "regular", @@ -469,6 +483,28 @@ "filter" ] }, + { + "name": "bars-ascending-align-left-arrow-down", + "style": "regular", + "svgName": "bars-ascending-align-left-arrow-down", + "componentName": "BarsAscendingAlignLeftArrowDown", + "keywords": [ + "lines", + "sort", + "filter" + ] + }, + { + "name": "bars-ascending-align-left-arrow-up", + "style": "regular", + "svgName": "bars-ascending-align-left-arrow-up", + "componentName": "BarsAscendingAlignLeftArrowUp", + "keywords": [ + "lines", + "sort", + "filter" + ] + }, { "name": "bars-ascending-align-right", "style": "regular", @@ -502,6 +538,28 @@ "filter" ] }, + { + "name": "bars-descending-align-left-arrow-down", + "style": "regular", + "svgName": "bars-descending-align-left-arrow-down", + "componentName": "BarsDescendingAlignLeftArrowDown", + "keywords": [ + "lines", + "sort", + "filter" + ] + }, + { + "name": "bars-descending-align-left-arrow-up", + "style": "regular", + "svgName": "bars-descending-align-left-arrow-up", + "componentName": "BarsDescendingAlignLeftArrowUp", + "keywords": [ + "lines", + "sort", + "filter" + ] + }, { "name": "bars-descending-align-right", "style": "regular", @@ -547,6 +605,17 @@ "notification" ] }, + { + "name": "bell-slash", + "style": "regular", + "svgName": "bell-slash", + "componentName": "BellSlash", + "keywords": [ + "notify", + "notification", + "mute" + ] + }, { "name": "bold", "style": "regular", @@ -711,6 +780,41 @@ "photo" ] }, + { + "name": "car", + "style": "regular", + "svgName": "car", + "componentName": "Car", + "keywords": [] + }, + { + "name": "card-club", + "style": "regular", + "svgName": "card-club", + "componentName": "CardClub", + "keywords": [] + }, + { + "name": "card-diamond", + "style": "regular", + "svgName": "card-diamond", + "componentName": "CardDiamond", + "keywords": [] + }, + { + "name": "card-heart", + "style": "regular", + "svgName": "card-heart", + "componentName": "CardHeart", + "keywords": [] + }, + { + "name": "card-spade", + "style": "regular", + "svgName": "card-spade", + "componentName": "CardSpade", + "keywords": [] + }, { "name": "caret-down", "style": "regular", @@ -1521,6 +1625,13 @@ "componentName": "CircleRuble", "keywords": [] }, + { + "name": "circle-ruble", + "style": "regular", + "svgName": "circle-ruble", + "componentName": "CircleRuble", + "keywords": [] + }, { "name": "circle-stop", "style": "regular", @@ -1645,6 +1756,20 @@ "componentName": "CloudCheck", "keywords": [] }, + { + "name": "cloud-gear", + "style": "regular", + "svgName": "cloud-gear", + "componentName": "CloudGear", + "keywords": [] + }, + { + "name": "cloud-nut-hex", + "style": "regular", + "svgName": "cloud-nut-hex", + "componentName": "CloudNutHex", + "keywords": [] + }, { "name": "clouds", "style": "regular", @@ -1962,6 +2087,13 @@ "componentName": "Database", "keywords": [] }, + { + "name": "database-arrow-right", + "style": "regular", + "svgName": "database-arrow-right", + "componentName": "DatabaseArrowRight", + "keywords": [] + }, { "name": "database-magnifier", "style": "regular", @@ -2140,6 +2272,13 @@ "componentName": "EnvelopeOpen", "keywords": [] }, + { + "name": "envelope-open-xmark", + "style": "regular", + "svgName": "envelope-open-xmark", + "componentName": "EnvelopeOpenXmark", + "keywords": [] + }, { "name": "equal", "style": "regular", @@ -2203,6 +2342,13 @@ "componentName": "FaceNeutral", "keywords": [] }, + { + "name": "face-neutral-dashed", + "style": "regular", + "svgName": "face-neutral-dashed", + "componentName": "FaceNeutralDashed", + "keywords": [] + }, { "name": "face-robot", "style": "regular", @@ -2384,6 +2530,13 @@ "page" ] }, + { + "name": "file-ruble", + "style": "regular", + "svgName": "file-ruble", + "componentName": "FileRuble", + "keywords": [] + }, { "name": "file-text", "style": "regular", @@ -3227,16 +3380,62 @@ ] }, { - "name": "layout-side-content", + "name": "layout-side-content-left", "style": "regular", - "svgName": "layout-side-content", - "componentName": "LayoutSideContent", + "svgName": "layout-side-content-left", + "componentName": "LayoutSideContentLeft", "keywords": [ "desktop", "table", "window" ] }, + { + "name": "layout-side-content-right", + "style": "regular", + "svgName": "layout-side-content-right", + "componentName": "LayoutSideContentRight", + "keywords": [ + "desktop", + "table", + "window" + ] + }, + { + "name": "layout-split-columns", + "style": "regular", + "svgName": "layout-split-columns", + "componentName": "LayoutSplitColumns", + "keywords": [] + }, + { + "name": "layout-split-columns-3", + "style": "regular", + "svgName": "layout-split-columns-3", + "componentName": "LayoutSplitColumns3", + "keywords": [] + }, + { + "name": "layout-split-rows", + "style": "regular", + "svgName": "layout-split-rows", + "componentName": "LayoutSplitRows", + "keywords": [] + }, + { + "name": "layout-split-side-content-left", + "style": "regular", + "svgName": "layout-split-side-content-left", + "componentName": "LayoutSplitSideContentLeft", + "keywords": [] + }, + { + "name": "layout-split-side-content-right", + "style": "regular", + "svgName": "layout-split-side-content-right", + "componentName": "LayoutSplitSideContentRight", + "keywords": [] + }, { "name": "layout-tabs", "style": "regular", @@ -3652,6 +3851,13 @@ "componentName": "NodesUp", "keywords": [] }, + { + "name": "nut-hex", + "style": "regular", + "svgName": "nut-hex", + "componentName": "NutHex", + "keywords": [] + }, { "name": "objects-align-bottom", "style": "regular", @@ -3802,6 +4008,13 @@ "user" ] }, + { + "name": "person-gear", + "style": "regular", + "svgName": "person-gear", + "componentName": "PersonGear", + "keywords": [] + }, { "name": "person-magnifier", "style": "regular", @@ -3814,6 +4027,13 @@ "search" ] }, + { + "name": "person-nut-hex", + "style": "regular", + "svgName": "person-nut-hex", + "componentName": "PersonNutHex", + "keywords": [] + }, { "name": "person-pencil", "style": "regular", @@ -5036,6 +5256,17 @@ "delete", "remove" ] + }, + { + "name": "layout-side-content", + "style": "regular", + "svgName": "layout-side-content", + "componentName": "LayoutSideContent", + "keywords": [ + "desktop", + "table", + "window" + ] } ] } \ No newline at end of file diff --git a/svgs/arrows-rotate-left-slash.svg b/svgs/arrows-rotate-left-slash.svg new file mode 100644 index 0000000..5658200 --- /dev/null +++ b/svgs/arrows-rotate-left-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrows-rotate-right-slash.svg b/svgs/arrows-rotate-right-slash.svg new file mode 100644 index 0000000..d34b3d3 --- /dev/null +++ b/svgs/arrows-rotate-right-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bars-ascending-align-left-arrow-down.svg b/svgs/bars-ascending-align-left-arrow-down.svg new file mode 100644 index 0000000..26a8005 --- /dev/null +++ b/svgs/bars-ascending-align-left-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bars-ascending-align-left-arrow-up.svg b/svgs/bars-ascending-align-left-arrow-up.svg new file mode 100644 index 0000000..0cf4173 --- /dev/null +++ b/svgs/bars-ascending-align-left-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bars-descending-align-left-arrow-down.svg b/svgs/bars-descending-align-left-arrow-down.svg new file mode 100644 index 0000000..aabfd70 --- /dev/null +++ b/svgs/bars-descending-align-left-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bars-descending-align-left-arrow-up.svg b/svgs/bars-descending-align-left-arrow-up.svg new file mode 100644 index 0000000..c39d2be --- /dev/null +++ b/svgs/bars-descending-align-left-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/bell-slash.svg b/svgs/bell-slash.svg new file mode 100644 index 0000000..e21d5a7 --- /dev/null +++ b/svgs/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/car.svg b/svgs/car.svg new file mode 100644 index 0000000..a5c8b7c --- /dev/null +++ b/svgs/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/card-club.svg b/svgs/card-club.svg new file mode 100644 index 0000000..6338b0d --- /dev/null +++ b/svgs/card-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/card-diamond.svg b/svgs/card-diamond.svg new file mode 100644 index 0000000..f5b001d --- /dev/null +++ b/svgs/card-diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/card-heart.svg b/svgs/card-heart.svg new file mode 100644 index 0000000..47007a0 --- /dev/null +++ b/svgs/card-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/card-spade.svg b/svgs/card-spade.svg new file mode 100644 index 0000000..12de541 --- /dev/null +++ b/svgs/card-spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/cloud-gear.svg b/svgs/cloud-gear.svg new file mode 100644 index 0000000..da476ca --- /dev/null +++ b/svgs/cloud-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/cloud-nut-hex.svg b/svgs/cloud-nut-hex.svg new file mode 100644 index 0000000..126193b --- /dev/null +++ b/svgs/cloud-nut-hex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/database-arrow-right.svg b/svgs/database-arrow-right.svg new file mode 100644 index 0000000..f957905 --- /dev/null +++ b/svgs/database-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/envelope-open-xmark.svg b/svgs/envelope-open-xmark.svg new file mode 100644 index 0000000..93b0920 --- /dev/null +++ b/svgs/envelope-open-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/face-neutral-dashed.svg b/svgs/face-neutral-dashed.svg new file mode 100644 index 0000000..c5b5acd --- /dev/null +++ b/svgs/face-neutral-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/file-ruble.svg b/svgs/file-ruble.svg new file mode 100644 index 0000000..84a1766 --- /dev/null +++ b/svgs/file-ruble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-side-content-left.svg b/svgs/layout-side-content-left.svg new file mode 100644 index 0000000..f2abfef --- /dev/null +++ b/svgs/layout-side-content-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-side-content-right.svg b/svgs/layout-side-content-right.svg new file mode 100644 index 0000000..54c2078 --- /dev/null +++ b/svgs/layout-side-content-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-split-columns-3.svg b/svgs/layout-split-columns-3.svg new file mode 100644 index 0000000..b5ee75a --- /dev/null +++ b/svgs/layout-split-columns-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-split-columns.svg b/svgs/layout-split-columns.svg new file mode 100644 index 0000000..79029e7 --- /dev/null +++ b/svgs/layout-split-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-split-rows.svg b/svgs/layout-split-rows.svg new file mode 100644 index 0000000..0a15596 --- /dev/null +++ b/svgs/layout-split-rows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-split-side-content-left.svg b/svgs/layout-split-side-content-left.svg new file mode 100644 index 0000000..33f7f53 --- /dev/null +++ b/svgs/layout-split-side-content-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/layout-split-side-content-right.svg b/svgs/layout-split-side-content-right.svg new file mode 100644 index 0000000..f08a6a9 --- /dev/null +++ b/svgs/layout-split-side-content-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/nut-hex.svg b/svgs/nut-hex.svg new file mode 100644 index 0000000..875350f --- /dev/null +++ b/svgs/nut-hex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/person-gear.svg b/svgs/person-gear.svg new file mode 100644 index 0000000..06b8124 --- /dev/null +++ b/svgs/person-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/person-nut-hex.svg b/svgs/person-nut-hex.svg new file mode 100644 index 0000000..c7a3ce9 --- /dev/null +++ b/svgs/person-nut-hex.svg @@ -0,0 +1 @@ + \ No newline at end of file