From 1de1620402bdb564916b29c5cbcae9e75f4aa000 Mon Sep 17 00:00:00 2001 From: amje Date: Wed, 29 May 2024 09:14:05 +0000 Subject: [PATCH] feat: sync icons --- lib/ArrowChevronDown.tsx | 20 +++++++ lib/ArrowChevronLeft.tsx | 20 +++++++ lib/ArrowChevronRight.tsx | 20 +++++++ lib/ArrowChevronUp.tsx | 20 +++++++ lib/Brush.tsx | 20 +++++++ lib/CircleQuestionDot.tsx | 21 +++++++ lib/DatabasesFill.tsx | 20 +++++++ lib/FileLetterP.tsx | 20 +++++++ lib/FileLetterW.tsx | 20 +++++++ lib/FileLetterX.tsx | 20 +++++++ lib/Hammer.tsx | 27 +++++++++ lib/index.ts | 11 ++++ metadata.json | 105 +++++++++++++++++++++++++++++++++-- svgs/arrow-chevron-down.svg | 1 + svgs/arrow-chevron-left.svg | 1 + svgs/arrow-chevron-right.svg | 1 + svgs/arrow-chevron-up.svg | 1 + svgs/brush.svg | 1 + svgs/circle-question-dot.svg | 1 + svgs/databases-fill.svg | 1 + svgs/file-letter-p.svg | 1 + svgs/file-letter-w.svg | 1 + svgs/file-letter-x.svg | 1 + svgs/hammer.svg | 1 + 24 files changed, 351 insertions(+), 4 deletions(-) create mode 100644 lib/ArrowChevronDown.tsx create mode 100644 lib/ArrowChevronLeft.tsx create mode 100644 lib/ArrowChevronRight.tsx create mode 100644 lib/ArrowChevronUp.tsx create mode 100644 lib/Brush.tsx create mode 100644 lib/CircleQuestionDot.tsx create mode 100644 lib/DatabasesFill.tsx create mode 100644 lib/FileLetterP.tsx create mode 100644 lib/FileLetterW.tsx create mode 100644 lib/FileLetterX.tsx create mode 100644 lib/Hammer.tsx create mode 100644 svgs/arrow-chevron-down.svg create mode 100644 svgs/arrow-chevron-left.svg create mode 100644 svgs/arrow-chevron-right.svg create mode 100644 svgs/arrow-chevron-up.svg create mode 100644 svgs/brush.svg create mode 100644 svgs/circle-question-dot.svg create mode 100644 svgs/databases-fill.svg create mode 100644 svgs/file-letter-p.svg create mode 100644 svgs/file-letter-w.svg create mode 100644 svgs/file-letter-x.svg create mode 100644 svgs/hammer.svg diff --git a/lib/ArrowChevronDown.tsx b/lib/ArrowChevronDown.tsx new file mode 100644 index 0000000..bf47ae8 --- /dev/null +++ b/lib/ArrowChevronDown.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowChevronDown = (props: SVGProps) => ( + + + +); +export default ArrowChevronDown; diff --git a/lib/ArrowChevronLeft.tsx b/lib/ArrowChevronLeft.tsx new file mode 100644 index 0000000..b1977b6 --- /dev/null +++ b/lib/ArrowChevronLeft.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowChevronLeft = (props: SVGProps) => ( + + + +); +export default ArrowChevronLeft; diff --git a/lib/ArrowChevronRight.tsx b/lib/ArrowChevronRight.tsx new file mode 100644 index 0000000..0ce0313 --- /dev/null +++ b/lib/ArrowChevronRight.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowChevronRight = (props: SVGProps) => ( + + + +); +export default ArrowChevronRight; diff --git a/lib/ArrowChevronUp.tsx b/lib/ArrowChevronUp.tsx new file mode 100644 index 0000000..8c9af4b --- /dev/null +++ b/lib/ArrowChevronUp.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowChevronUp = (props: SVGProps) => ( + + + +); +export default ArrowChevronUp; diff --git a/lib/Brush.tsx b/lib/Brush.tsx new file mode 100644 index 0000000..4b16ae0 --- /dev/null +++ b/lib/Brush.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Brush = (props: SVGProps) => ( + + + +); +export default Brush; diff --git a/lib/CircleQuestionDot.tsx b/lib/CircleQuestionDot.tsx new file mode 100644 index 0000000..27744de --- /dev/null +++ b/lib/CircleQuestionDot.tsx @@ -0,0 +1,21 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const CircleQuestionDot = (props: SVGProps) => ( + + + + + + +); +export default CircleQuestionDot; diff --git a/lib/DatabasesFill.tsx b/lib/DatabasesFill.tsx new file mode 100644 index 0000000..1496a62 --- /dev/null +++ b/lib/DatabasesFill.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const DatabasesFill = (props: SVGProps) => ( + + + +); +export default DatabasesFill; diff --git a/lib/FileLetterP.tsx b/lib/FileLetterP.tsx new file mode 100644 index 0000000..b693233 --- /dev/null +++ b/lib/FileLetterP.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const FileLetterP = (props: SVGProps) => ( + + + +); +export default FileLetterP; diff --git a/lib/FileLetterW.tsx b/lib/FileLetterW.tsx new file mode 100644 index 0000000..13f07af --- /dev/null +++ b/lib/FileLetterW.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const FileLetterW = (props: SVGProps) => ( + + + +); +export default FileLetterW; diff --git a/lib/FileLetterX.tsx b/lib/FileLetterX.tsx new file mode 100644 index 0000000..58993ea --- /dev/null +++ b/lib/FileLetterX.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const FileLetterX = (props: SVGProps) => ( + + + +); +export default FileLetterX; diff --git a/lib/Hammer.tsx b/lib/Hammer.tsx new file mode 100644 index 0000000..1e8ba36 --- /dev/null +++ b/lib/Hammer.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Hammer = (props: SVGProps) => ( + + + + + + + + + + +); +export default Hammer; diff --git a/lib/index.ts b/lib/index.ts index d0925ec..8abead9 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -6,6 +6,10 @@ export {default as AbbrZip} from './AbbrZip'; export {default as AntennaSignal} from './AntennaSignal'; export {default as Aperture} from './Aperture'; export {default as Archive} from './Archive'; +export {default as ArrowChevronDown} from './ArrowChevronDown'; +export {default as ArrowChevronLeft} from './ArrowChevronLeft'; +export {default as ArrowChevronRight} from './ArrowChevronRight'; +export {default as ArrowChevronUp} from './ArrowChevronUp'; export {default as ArrowDown} from './ArrowDown'; export {default as ArrowDownFromLine} from './ArrowDownFromLine'; export {default as ArrowDownToLine} from './ArrowDownToLine'; @@ -88,6 +92,7 @@ export {default as BranchesRightArrowRight} from './BranchesRightArrowRight'; export {default as Briefcase} from './Briefcase'; export {default as BroadcastSignal} from './BroadcastSignal'; export {default as BroomMotion} from './BroomMotion'; +export {default as Brush} from './Brush'; export {default as Bucket} from './Bucket'; export {default as BucketPaint} from './BucketPaint'; export {default as Bug} from './Bug'; @@ -193,6 +198,7 @@ export {default as CirclePlay} from './CirclePlay'; export {default as CirclePlus} from './CirclePlus'; export {default as CirclePlusFill} from './CirclePlusFill'; export {default as CircleQuestion} from './CircleQuestion'; +export {default as CircleQuestionDot} from './CircleQuestionDot'; export {default as CircleQuestionFill} from './CircleQuestionFill'; export {default as CircleRuble} from './CircleRuble'; export {default as CircleStop} from './CircleStop'; @@ -260,6 +266,7 @@ export {default as DatabaseArrowRight} from './DatabaseArrowRight'; export {default as DatabaseFill} from './DatabaseFill'; export {default as DatabaseMagnifier} from './DatabaseMagnifier'; export {default as Databases} from './Databases'; +export {default as DatabasesFill} from './DatabasesFill'; export {default as Delete} from './Delete'; export {default as Diamond} from './Diamond'; export {default as DiamondExclamation} from './DiamondExclamation'; @@ -306,6 +313,9 @@ export {default as FileCheck} from './FileCheck'; export {default as FileCode} from './FileCode'; export {default as FileDollar} from './FileDollar'; export {default as FileExclamation} from './FileExclamation'; +export {default as FileLetterP} from './FileLetterP'; +export {default as FileLetterW} from './FileLetterW'; +export {default as FileLetterX} from './FileLetterX'; export {default as FileMagnifier} from './FileMagnifier'; export {default as FileMinus} from './FileMinus'; export {default as FilePlus} from './FilePlus'; @@ -366,6 +376,7 @@ export {default as GraduationCap} from './GraduationCap'; export {default as GraphNode} from './GraphNode'; export {default as Grip} from './Grip'; export {default as GripHorizontal} from './GripHorizontal'; +export {default as Hammer} from './Hammer'; export {default as Hand} from './Hand'; export {default as HandOk} from './HandOk'; export {default as HandPointDown} from './HandPointDown'; diff --git a/metadata.json b/metadata.json index 86892d0..bf7d8a7 100644 --- a/metadata.json +++ b/metadata.json @@ -60,6 +60,34 @@ "drawer" ] }, + { + "name": "arrow-chevron-down", + "style": "regular", + "svgName": "arrow-chevron-down", + "componentName": "ArrowChevronDown", + "keywords": [] + }, + { + "name": "arrow-chevron-left", + "style": "regular", + "svgName": "arrow-chevron-left", + "componentName": "ArrowChevronLeft", + "keywords": [] + }, + { + "name": "arrow-chevron-right", + "style": "regular", + "svgName": "arrow-chevron-right", + "componentName": "ArrowChevronRight", + "keywords": [] + }, + { + "name": "arrow-chevron-up", + "style": "regular", + "svgName": "arrow-chevron-up", + "componentName": "ArrowChevronUp", + "keywords": [] + }, { "name": "arrow-down", "style": "regular", @@ -167,14 +195,18 @@ "style": "regular", "svgName": "arrow-rotate-left", "componentName": "ArrowRotateLeft", - "keywords": [] + "keywords": [ + "refresh" + ] }, { "name": "arrow-rotate-right", "style": "regular", "svgName": "arrow-rotate-right", "componentName": "ArrowRotateRight", - "keywords": [] + "keywords": [ + "refresh" + ] }, { "name": "arrow-shape-down", @@ -416,7 +448,9 @@ "style": "regular", "svgName": "arrows-rotate-left", "componentName": "ArrowsRotateLeft", - "keywords": [] + "keywords": [ + "refresh" + ] }, { "name": "arrows-rotate-left-slash", @@ -430,7 +464,9 @@ "style": "regular", "svgName": "arrows-rotate-right", "componentName": "ArrowsRotateRight", - "keywords": [] + "keywords": [ + "refresh" + ] }, { "name": "arrows-rotate-right-slash", @@ -736,6 +772,13 @@ "delete" ] }, + { + "name": "brush", + "style": "regular", + "svgName": "brush", + "componentName": "Brush", + "keywords": [] + }, { "name": "bucket", "style": "regular", @@ -1637,6 +1680,13 @@ "componentName": "CircleQuestionFill", "keywords": [] }, + { + "name": "circle-question-dot", + "style": "regular", + "svgName": "circle-question-dot", + "componentName": "CircleQuestionDot", + "keywords": [] + }, { "name": "circle-ruble", "style": "regular", @@ -2148,6 +2198,13 @@ "componentName": "Databases", "keywords": [] }, + { + "name": "databases", + "style": "fill", + "svgName": "databases-fill", + "componentName": "DatabasesFill", + "keywords": [] + }, { "name": "delete", "style": "regular", @@ -2549,6 +2606,39 @@ "page" ] }, + { + "name": "file-letter-p", + "style": "regular", + "svgName": "file-letter-p", + "componentName": "FileLetterP", + "keywords": [ + "document", + "paper", + "page" + ] + }, + { + "name": "file-letter-w", + "style": "regular", + "svgName": "file-letter-w", + "componentName": "FileLetterW", + "keywords": [ + "document", + "paper", + "page" + ] + }, + { + "name": "file-letter-x", + "style": "regular", + "svgName": "file-letter-x", + "componentName": "FileLetterX", + "keywords": [ + "document", + "paper", + "page" + ] + }, { "name": "file-magnifier", "style": "regular", @@ -3069,6 +3159,13 @@ "componentName": "GripHorizontal", "keywords": [] }, + { + "name": "hammer", + "style": "regular", + "svgName": "hammer", + "componentName": "Hammer", + "keywords": [] + }, { "name": "hand", "style": "regular", diff --git a/svgs/arrow-chevron-down.svg b/svgs/arrow-chevron-down.svg new file mode 100644 index 0000000..12d0c0a --- /dev/null +++ b/svgs/arrow-chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-chevron-left.svg b/svgs/arrow-chevron-left.svg new file mode 100644 index 0000000..a147192 --- /dev/null +++ b/svgs/arrow-chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-chevron-right.svg b/svgs/arrow-chevron-right.svg new file mode 100644 index 0000000..2984d61 --- /dev/null +++ b/svgs/arrow-chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-chevron-up.svg b/svgs/arrow-chevron-up.svg new file mode 100644 index 0000000..859b692 --- /dev/null +++ b/svgs/arrow-chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/brush.svg b/svgs/brush.svg new file mode 100644 index 0000000..8134f03 --- /dev/null +++ b/svgs/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/circle-question-dot.svg b/svgs/circle-question-dot.svg new file mode 100644 index 0000000..a4b4d2c --- /dev/null +++ b/svgs/circle-question-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/databases-fill.svg b/svgs/databases-fill.svg new file mode 100644 index 0000000..ab7d0d4 --- /dev/null +++ b/svgs/databases-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/file-letter-p.svg b/svgs/file-letter-p.svg new file mode 100644 index 0000000..951a645 --- /dev/null +++ b/svgs/file-letter-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/file-letter-w.svg b/svgs/file-letter-w.svg new file mode 100644 index 0000000..883485c --- /dev/null +++ b/svgs/file-letter-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/file-letter-x.svg b/svgs/file-letter-x.svg new file mode 100644 index 0000000..9855bb2 --- /dev/null +++ b/svgs/file-letter-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/hammer.svg b/svgs/hammer.svg new file mode 100644 index 0000000..cec683e --- /dev/null +++ b/svgs/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file