From d04aa2cc0f10baeee39b2643c5ad46b7f5040fb1 Mon Sep 17 00:00:00 2001 From: amje <3368839+amje@users.noreply.github.com> Date: Mon, 26 Jan 2026 13:39:10 +0000 Subject: [PATCH] feat: sync icons --- lib/Alarm.tsx | 23 +++ lib/AlarmFill.tsx | 22 +++ lib/AlmostEqual.tsx | 18 ++ lib/ArrowDownLeft.tsx | 18 ++ lib/ArrowDownRight.tsx | 18 ++ lib/ArrowRotateLeftNumber5.tsx | 19 ++ lib/ArrowRotateRightNumber5.tsx | 18 ++ lib/ArrowUpLeft.tsx | 18 ++ lib/ArrowUpRight.tsx | 18 ++ lib/Books.tsx | 22 +++ lib/BriefcaseFill.tsx | 20 ++ lib/BroomMotion.tsx | 12 +- lib/BroomMotionFill.tsx | 18 ++ lib/CalendarXmark.tsx | 22 +++ lib/ChartLineArrowUp.tsx | 25 +++ lib/ChartLinePoints.tsx | 25 +++ lib/CheckDouble.tsx | 8 +- lib/CircleTree.tsx | 20 ++ lib/EyeClosed.tsx | 18 ++ lib/FaceRobotSmile.tsx | 27 +++ lib/Firewall.tsx | 24 +++ lib/Gem.tsx | 22 +++ lib/LockFill.tsx | 22 +++ lib/LockOpenFill.tsx | 22 +++ lib/LogoDebian.tsx | 18 ++ lib/LogoFigma.tsx | 22 +++ lib/LogoGithub.tsx | 20 ++ lib/LogoLinkedin.tsx | 22 +++ lib/LogoMicrosoftOffice.tsx | 18 ++ lib/LogoNodejs.tsx | 18 ++ lib/LogoSlack.tsx | 22 +++ lib/Microscope.tsx | 22 +++ lib/Paintbrush.tsx | 22 +++ lib/Plane.tsx | 27 +++ lib/PlaneFill.tsx | 25 +++ lib/Speedometer.tsx | 19 ++ lib/Superscript.tsx | 18 ++ lib/Tachometer.tsx | 19 ++ lib/UniversalAccess.tsx | 24 +++ lib/index.ts | 37 ++++ metadata.json | 267 +++++++++++++++++++++++++++ svgs/alarm-fill.svg | 1 + svgs/alarm.svg | 1 + svgs/almost-equal.svg | 1 + svgs/arrow-down-left.svg | 1 + svgs/arrow-down-right.svg | 1 + svgs/arrow-rotate-left-number-5.svg | 1 + svgs/arrow-rotate-right-number-5.svg | 1 + svgs/arrow-up-left.svg | 1 + svgs/arrow-up-right.svg | 1 + svgs/books.svg | 1 + svgs/briefcase-fill.svg | 1 + svgs/broom-motion-fill.svg | 1 + svgs/broom-motion.svg | 2 +- svgs/calendar-xmark.svg | 1 + svgs/chart-line-arrow-up.svg | 1 + svgs/chart-line-points.svg | 1 + svgs/check-double.svg | 2 +- svgs/circle-tree.svg | 1 + svgs/eye-closed.svg | 1 + svgs/face-robot-smile.svg | 1 + svgs/firewall.svg | 1 + svgs/gem.svg | 1 + svgs/lock-fill.svg | 1 + svgs/lock-open-fill.svg | 1 + svgs/logo-debian.svg | 1 + svgs/logo-figma.svg | 1 + svgs/logo-github.svg | 1 + svgs/logo-linkedin.svg | 1 + svgs/logo-microsoft-office.svg | 1 + svgs/logo-nodejs.svg | 1 + svgs/logo-slack.svg | 1 + svgs/microscope.svg | 1 + svgs/paintbrush.svg | 1 + svgs/plane-fill.svg | 1 + svgs/plane.svg | 1 + svgs/speedometer.svg | 1 + svgs/superscript.svg | 1 + svgs/tachometer.svg | 1 + svgs/universal-access.svg | 1 + 80 files changed, 1126 insertions(+), 14 deletions(-) create mode 100644 lib/Alarm.tsx create mode 100644 lib/AlarmFill.tsx create mode 100644 lib/AlmostEqual.tsx create mode 100644 lib/ArrowDownLeft.tsx create mode 100644 lib/ArrowDownRight.tsx create mode 100644 lib/ArrowRotateLeftNumber5.tsx create mode 100644 lib/ArrowRotateRightNumber5.tsx create mode 100644 lib/ArrowUpLeft.tsx create mode 100644 lib/ArrowUpRight.tsx create mode 100644 lib/Books.tsx create mode 100644 lib/BriefcaseFill.tsx create mode 100644 lib/BroomMotionFill.tsx create mode 100644 lib/CalendarXmark.tsx create mode 100644 lib/ChartLineArrowUp.tsx create mode 100644 lib/ChartLinePoints.tsx create mode 100644 lib/CircleTree.tsx create mode 100644 lib/EyeClosed.tsx create mode 100644 lib/FaceRobotSmile.tsx create mode 100644 lib/Firewall.tsx create mode 100644 lib/Gem.tsx create mode 100644 lib/LockFill.tsx create mode 100644 lib/LockOpenFill.tsx create mode 100644 lib/LogoDebian.tsx create mode 100644 lib/LogoFigma.tsx create mode 100644 lib/LogoGithub.tsx create mode 100644 lib/LogoLinkedin.tsx create mode 100644 lib/LogoMicrosoftOffice.tsx create mode 100644 lib/LogoNodejs.tsx create mode 100644 lib/LogoSlack.tsx create mode 100644 lib/Microscope.tsx create mode 100644 lib/Paintbrush.tsx create mode 100644 lib/Plane.tsx create mode 100644 lib/PlaneFill.tsx create mode 100644 lib/Speedometer.tsx create mode 100644 lib/Superscript.tsx create mode 100644 lib/Tachometer.tsx create mode 100644 lib/UniversalAccess.tsx create mode 100644 svgs/alarm-fill.svg create mode 100644 svgs/alarm.svg create mode 100644 svgs/almost-equal.svg create mode 100644 svgs/arrow-down-left.svg create mode 100644 svgs/arrow-down-right.svg create mode 100644 svgs/arrow-rotate-left-number-5.svg create mode 100644 svgs/arrow-rotate-right-number-5.svg create mode 100644 svgs/arrow-up-left.svg create mode 100644 svgs/arrow-up-right.svg create mode 100644 svgs/books.svg create mode 100644 svgs/briefcase-fill.svg create mode 100644 svgs/broom-motion-fill.svg create mode 100644 svgs/calendar-xmark.svg create mode 100644 svgs/chart-line-arrow-up.svg create mode 100644 svgs/chart-line-points.svg create mode 100644 svgs/circle-tree.svg create mode 100644 svgs/eye-closed.svg create mode 100644 svgs/face-robot-smile.svg create mode 100644 svgs/firewall.svg create mode 100644 svgs/gem.svg create mode 100644 svgs/lock-fill.svg create mode 100644 svgs/lock-open-fill.svg create mode 100644 svgs/logo-debian.svg create mode 100644 svgs/logo-figma.svg create mode 100644 svgs/logo-github.svg create mode 100644 svgs/logo-linkedin.svg create mode 100644 svgs/logo-microsoft-office.svg create mode 100644 svgs/logo-nodejs.svg create mode 100644 svgs/logo-slack.svg create mode 100644 svgs/microscope.svg create mode 100644 svgs/paintbrush.svg create mode 100644 svgs/plane-fill.svg create mode 100644 svgs/plane.svg create mode 100644 svgs/speedometer.svg create mode 100644 svgs/superscript.svg create mode 100644 svgs/tachometer.svg create mode 100644 svgs/universal-access.svg diff --git a/lib/Alarm.tsx b/lib/Alarm.tsx new file mode 100644 index 0000000..fd7afc6 --- /dev/null +++ b/lib/Alarm.tsx @@ -0,0 +1,23 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Alarm = (props: SVGProps) => ( + + + + + + + +); +export default Alarm; diff --git a/lib/AlarmFill.tsx b/lib/AlarmFill.tsx new file mode 100644 index 0000000..7580b98 --- /dev/null +++ b/lib/AlarmFill.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const AlarmFill = (props: SVGProps) => ( + + + + + + +); +export default AlarmFill; diff --git a/lib/AlmostEqual.tsx b/lib/AlmostEqual.tsx new file mode 100644 index 0000000..d212200 --- /dev/null +++ b/lib/AlmostEqual.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const AlmostEqual = (props: SVGProps) => ( + + + +); +export default AlmostEqual; diff --git a/lib/ArrowDownLeft.tsx b/lib/ArrowDownLeft.tsx new file mode 100644 index 0000000..328b2f7 --- /dev/null +++ b/lib/ArrowDownLeft.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowDownLeft = (props: SVGProps) => ( + + + + + + +); +export default ArrowDownLeft; diff --git a/lib/ArrowDownRight.tsx b/lib/ArrowDownRight.tsx new file mode 100644 index 0000000..618cd42 --- /dev/null +++ b/lib/ArrowDownRight.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowDownRight = (props: SVGProps) => ( + + + +); +export default ArrowDownRight; diff --git a/lib/ArrowRotateLeftNumber5.tsx b/lib/ArrowRotateLeftNumber5.tsx new file mode 100644 index 0000000..811e0c2 --- /dev/null +++ b/lib/ArrowRotateLeftNumber5.tsx @@ -0,0 +1,19 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowRotateLeftNumber5 = (props: SVGProps) => ( + + + + + + + +); +export default ArrowRotateLeftNumber5; diff --git a/lib/ArrowRotateRightNumber5.tsx b/lib/ArrowRotateRightNumber5.tsx new file mode 100644 index 0000000..0d72e07 --- /dev/null +++ b/lib/ArrowRotateRightNumber5.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowRotateRightNumber5 = (props: SVGProps) => ( + + + + + + +); +export default ArrowRotateRightNumber5; diff --git a/lib/ArrowUpLeft.tsx b/lib/ArrowUpLeft.tsx new file mode 100644 index 0000000..deac3e2 --- /dev/null +++ b/lib/ArrowUpLeft.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowUpLeft = (props: SVGProps) => ( + + + +); +export default ArrowUpLeft; diff --git a/lib/ArrowUpRight.tsx b/lib/ArrowUpRight.tsx new file mode 100644 index 0000000..d8f536a --- /dev/null +++ b/lib/ArrowUpRight.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ArrowUpRight = (props: SVGProps) => ( + + + +); +export default ArrowUpRight; diff --git a/lib/Books.tsx b/lib/Books.tsx new file mode 100644 index 0000000..ea6b89d --- /dev/null +++ b/lib/Books.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Books = (props: SVGProps) => ( + + + + + + +); +export default Books; diff --git a/lib/BriefcaseFill.tsx b/lib/BriefcaseFill.tsx new file mode 100644 index 0000000..a0e2a7f --- /dev/null +++ b/lib/BriefcaseFill.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const BriefcaseFill = (props: SVGProps) => ( + + + +); +export default BriefcaseFill; diff --git a/lib/BroomMotion.tsx b/lib/BroomMotion.tsx index 5db5ac2..0edcd70 100644 --- a/lib/BroomMotion.tsx +++ b/lib/BroomMotion.tsx @@ -9,19 +9,15 @@ const BroomMotion = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - + + + - - - - - ); export default BroomMotion; diff --git a/lib/BroomMotionFill.tsx b/lib/BroomMotionFill.tsx new file mode 100644 index 0000000..553d0aa --- /dev/null +++ b/lib/BroomMotionFill.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const BroomMotionFill = (props: SVGProps) => ( + + + +); +export default BroomMotionFill; diff --git a/lib/CalendarXmark.tsx b/lib/CalendarXmark.tsx new file mode 100644 index 0000000..d01592c --- /dev/null +++ b/lib/CalendarXmark.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const CalendarXmark = (props: SVGProps) => ( + + + + + + +); +export default CalendarXmark; diff --git a/lib/ChartLineArrowUp.tsx b/lib/ChartLineArrowUp.tsx new file mode 100644 index 0000000..65adb5d --- /dev/null +++ b/lib/ChartLineArrowUp.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ChartLineArrowUp = (props: SVGProps) => ( + + + + + + + + + + +); +export default ChartLineArrowUp; diff --git a/lib/ChartLinePoints.tsx b/lib/ChartLinePoints.tsx new file mode 100644 index 0000000..ecf2193 --- /dev/null +++ b/lib/ChartLinePoints.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const ChartLinePoints = (props: SVGProps) => ( + + + + + + + + + + +); +export default ChartLinePoints; diff --git a/lib/CheckDouble.tsx b/lib/CheckDouble.tsx index 77d24e2..fab7080 100644 --- a/lib/CheckDouble.tsx +++ b/lib/CheckDouble.tsx @@ -9,10 +9,10 @@ const CheckDouble = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - - - - + ); export default CheckDouble; diff --git a/lib/CircleTree.tsx b/lib/CircleTree.tsx new file mode 100644 index 0000000..3cab978 --- /dev/null +++ b/lib/CircleTree.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const CircleTree = (props: SVGProps) => ( + + + +); +export default CircleTree; diff --git a/lib/EyeClosed.tsx b/lib/EyeClosed.tsx new file mode 100644 index 0000000..0d8b4e1 --- /dev/null +++ b/lib/EyeClosed.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const EyeClosed = (props: SVGProps) => ( + + + + + + +); +export default EyeClosed; diff --git a/lib/FaceRobotSmile.tsx b/lib/FaceRobotSmile.tsx new file mode 100644 index 0000000..64a66c1 --- /dev/null +++ b/lib/FaceRobotSmile.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const FaceRobotSmile = (props: SVGProps) => ( + + + + + + + + + + + +); +export default FaceRobotSmile; diff --git a/lib/Firewall.tsx b/lib/Firewall.tsx new file mode 100644 index 0000000..6f038d0 --- /dev/null +++ b/lib/Firewall.tsx @@ -0,0 +1,24 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Firewall = (props: SVGProps) => ( + + + + + + + + +); +export default Firewall; diff --git a/lib/Gem.tsx b/lib/Gem.tsx new file mode 100644 index 0000000..3a8e1f4 --- /dev/null +++ b/lib/Gem.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Gem = (props: SVGProps) => ( + + + + + + +); +export default Gem; diff --git a/lib/LockFill.tsx b/lib/LockFill.tsx new file mode 100644 index 0000000..aa11ec6 --- /dev/null +++ b/lib/LockFill.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LockFill = (props: SVGProps) => ( + + + + + + +); +export default LockFill; diff --git a/lib/LockOpenFill.tsx b/lib/LockOpenFill.tsx new file mode 100644 index 0000000..4aa29d8 --- /dev/null +++ b/lib/LockOpenFill.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LockOpenFill = (props: SVGProps) => ( + + + + + + +); +export default LockOpenFill; diff --git a/lib/LogoDebian.tsx b/lib/LogoDebian.tsx new file mode 100644 index 0000000..b57db8a --- /dev/null +++ b/lib/LogoDebian.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoDebian = (props: SVGProps) => ( + + + +); +export default LogoDebian; diff --git a/lib/LogoFigma.tsx b/lib/LogoFigma.tsx new file mode 100644 index 0000000..f075c19 --- /dev/null +++ b/lib/LogoFigma.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoFigma = (props: SVGProps) => ( + + + + + + +); +export default LogoFigma; diff --git a/lib/LogoGithub.tsx b/lib/LogoGithub.tsx new file mode 100644 index 0000000..9d992d1 --- /dev/null +++ b/lib/LogoGithub.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoGithub = (props: SVGProps) => ( + + + +); +export default LogoGithub; diff --git a/lib/LogoLinkedin.tsx b/lib/LogoLinkedin.tsx new file mode 100644 index 0000000..0fa5479 --- /dev/null +++ b/lib/LogoLinkedin.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoLinkedin = (props: SVGProps) => ( + + + + + + +); +export default LogoLinkedin; diff --git a/lib/LogoMicrosoftOffice.tsx b/lib/LogoMicrosoftOffice.tsx new file mode 100644 index 0000000..13fab1e --- /dev/null +++ b/lib/LogoMicrosoftOffice.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoMicrosoftOffice = (props: SVGProps) => ( + + + + + + +); +export default LogoMicrosoftOffice; diff --git a/lib/LogoNodejs.tsx b/lib/LogoNodejs.tsx new file mode 100644 index 0000000..b285bd3 --- /dev/null +++ b/lib/LogoNodejs.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoNodejs = (props: SVGProps) => ( + + + + + + +); +export default LogoNodejs; diff --git a/lib/LogoSlack.tsx b/lib/LogoSlack.tsx new file mode 100644 index 0000000..35dad35 --- /dev/null +++ b/lib/LogoSlack.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const LogoSlack = (props: SVGProps) => ( + + + + + + +); +export default LogoSlack; diff --git a/lib/Microscope.tsx b/lib/Microscope.tsx new file mode 100644 index 0000000..3f31e7a --- /dev/null +++ b/lib/Microscope.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Microscope = (props: SVGProps) => ( + + + + + + +); +export default Microscope; diff --git a/lib/Paintbrush.tsx b/lib/Paintbrush.tsx new file mode 100644 index 0000000..3701a84 --- /dev/null +++ b/lib/Paintbrush.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Paintbrush = (props: SVGProps) => ( + + + + + + +); +export default Paintbrush; diff --git a/lib/Plane.tsx b/lib/Plane.tsx new file mode 100644 index 0000000..32df117 --- /dev/null +++ b/lib/Plane.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Plane = (props: SVGProps) => ( + + + + + + + + + + +); +export default Plane; diff --git a/lib/PlaneFill.tsx b/lib/PlaneFill.tsx new file mode 100644 index 0000000..fd0d47e --- /dev/null +++ b/lib/PlaneFill.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const PlaneFill = (props: SVGProps) => ( + + + + + + + + + + +); +export default PlaneFill; diff --git a/lib/Speedometer.tsx b/lib/Speedometer.tsx new file mode 100644 index 0000000..47c70bd --- /dev/null +++ b/lib/Speedometer.tsx @@ -0,0 +1,19 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Speedometer = (props: SVGProps) => ( + + + + + + + +); +export default Speedometer; diff --git a/lib/Superscript.tsx b/lib/Superscript.tsx new file mode 100644 index 0000000..a3b189d --- /dev/null +++ b/lib/Superscript.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Superscript = (props: SVGProps) => ( + + + +); +export default Superscript; diff --git a/lib/Tachometer.tsx b/lib/Tachometer.tsx new file mode 100644 index 0000000..90844ea --- /dev/null +++ b/lib/Tachometer.tsx @@ -0,0 +1,19 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const Tachometer = (props: SVGProps) => ( + + + + + + + +); +export default Tachometer; diff --git a/lib/UniversalAccess.tsx b/lib/UniversalAccess.tsx new file mode 100644 index 0000000..0684d9e --- /dev/null +++ b/lib/UniversalAccess.tsx @@ -0,0 +1,24 @@ +import * as React from 'react'; +import type {SVGProps} from 'react'; +const UniversalAccess = (props: SVGProps) => ( + + + + + + + + +); +export default UniversalAccess; diff --git a/lib/index.ts b/lib/index.ts index 9012e71..48334e3 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -3,6 +3,9 @@ export {default as AbbrMl} from './AbbrMl'; export {default as AbbrQl} from './AbbrQl'; export {default as AbbrSql} from './AbbrSql'; export {default as AbbrZip} from './AbbrZip'; +export {default as Alarm} from './Alarm'; +export {default as AlarmFill} from './AlarmFill'; +export {default as AlmostEqual} from './AlmostEqual'; export {default as AntennaSignal} from './AntennaSignal'; export {default as Aperture} from './Aperture'; export {default as Archive} from './Archive'; @@ -12,6 +15,8 @@ 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 ArrowDownLeft} from './ArrowDownLeft'; +export {default as ArrowDownRight} from './ArrowDownRight'; export {default as ArrowDownToLine} from './ArrowDownToLine'; export {default as ArrowDownToSquare} from './ArrowDownToSquare'; export {default as ArrowLeft} from './ArrowLeft'; @@ -24,7 +29,9 @@ export {default as ArrowRightFromSquare} from './ArrowRightFromSquare'; export {default as ArrowRightToLine} from './ArrowRightToLine'; export {default as ArrowRightToSquare} from './ArrowRightToSquare'; export {default as ArrowRotateLeft} from './ArrowRotateLeft'; +export {default as ArrowRotateLeftNumber5} from './ArrowRotateLeftNumber5'; export {default as ArrowRotateRight} from './ArrowRotateRight'; +export {default as ArrowRotateRightNumber5} from './ArrowRotateRightNumber5'; export {default as ArrowShapeDown} from './ArrowShapeDown'; export {default as ArrowShapeDownFromLine} from './ArrowShapeDownFromLine'; export {default as ArrowShapeDownToLine} from './ArrowShapeDownToLine'; @@ -44,6 +51,8 @@ export {default as ArrowUpArrowDown} from './ArrowUpArrowDown'; export {default as ArrowUpFromLine} from './ArrowUpFromLine'; export {default as ArrowUpFromSquare} from './ArrowUpFromSquare'; export {default as ArrowUpFromSquareSlash} from './ArrowUpFromSquareSlash'; +export {default as ArrowUpLeft} from './ArrowUpLeft'; +export {default as ArrowUpRight} from './ArrowUpRight'; export {default as ArrowUpRightFromSquare} from './ArrowUpRightFromSquare'; export {default as ArrowUpToLine} from './ArrowUpToLine'; export {default as ArrowUturnCcwDown} from './ArrowUturnCcwDown'; @@ -90,14 +99,17 @@ export {default as Book} from './Book'; export {default as BookOpen} from './BookOpen'; export {default as Bookmark} from './Bookmark'; export {default as BookmarkFill} from './BookmarkFill'; +export {default as Books} from './Books'; export {default as Box} from './Box'; export {default as Boxes3} from './Boxes3'; export {default as BranchesDown} from './BranchesDown'; export {default as BranchesRight} from './BranchesRight'; export {default as BranchesRightArrowRight} from './BranchesRightArrowRight'; export {default as Briefcase} from './Briefcase'; +export {default as BriefcaseFill} from './BriefcaseFill'; export {default as BroadcastSignal} from './BroadcastSignal'; export {default as BroomMotion} from './BroomMotion'; +export {default as BroomMotionFill} from './BroomMotionFill'; export {default as Brush} from './Brush'; export {default as Bucket} from './Bucket'; export {default as BucketPaint} from './BucketPaint'; @@ -105,6 +117,7 @@ export {default as Bug} from './Bug'; export {default as Bulb} from './Bulb'; export {default as Calculator} from './Calculator'; export {default as Calendar} from './Calendar'; +export {default as CalendarXmark} from './CalendarXmark'; export {default as Camera} from './Camera'; export {default as Car} from './Car'; export {default as CardClub} from './CardClub'; @@ -124,7 +137,9 @@ export {default as ChartColumn} from './ChartColumn'; export {default as ChartColumnStacked} from './ChartColumnStacked'; export {default as ChartDonut} from './ChartDonut'; export {default as ChartLine} from './ChartLine'; +export {default as ChartLineArrowUp} from './ChartLineArrowUp'; export {default as ChartLineLabel} from './ChartLineLabel'; +export {default as ChartLinePoints} from './ChartLinePoints'; export {default as ChartMixed} from './ChartMixed'; export {default as ChartPie} from './ChartPie'; export {default as ChartTreemap} from './ChartTreemap'; @@ -236,6 +251,7 @@ export {default as CircleQuestionFill} from './CircleQuestionFill'; export {default as CircleRuble} from './CircleRuble'; export {default as CircleStop} from './CircleStop'; export {default as CircleStopFill} from './CircleStopFill'; +export {default as CircleTree} from './CircleTree'; export {default as CircleXmark} from './CircleXmark'; export {default as CircleXmarkFill} from './CircleXmarkFill'; export {default as Circles3Plus} from './Circles3Plus'; @@ -328,6 +344,7 @@ export {default as Eraser} from './Eraser'; export {default as ExclamationShape} from './ExclamationShape'; export {default as ExclamationShapeFill} from './ExclamationShapeFill'; export {default as Eye} from './Eye'; +export {default as EyeClosed} from './EyeClosed'; export {default as EyeDashed} from './EyeDashed'; export {default as EyeSlash} from './EyeSlash'; export {default as EyesLookLeft} from './EyesLookLeft'; @@ -338,6 +355,7 @@ 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 FaceRobotSmile} from './FaceRobotSmile'; export {default as FaceSad} from './FaceSad'; export {default as FaceSmile} from './FaceSmile'; export {default as FaceSurprise} from './FaceSurprise'; @@ -366,6 +384,7 @@ export {default as FileZipper} from './FileZipper'; export {default as Files} from './Files'; export {default as Filmstrip} from './Filmstrip'; export {default as Fingerprint} from './Fingerprint'; +export {default as Firewall} from './Firewall'; export {default as Flag} from './Flag'; export {default as Flame} from './Flame'; export {default as Flask} from './Flask'; @@ -404,6 +423,7 @@ export {default as Gear} from './Gear'; export {default as GearBranches} from './GearBranches'; export {default as GearDot} from './GearDot'; export {default as GearPlay} from './GearPlay'; +export {default as Gem} from './Gem'; export {default as Geo} from './Geo'; export {default as GeoDots} from './GeoDots'; export {default as GeoFill} from './GeoFill'; @@ -491,21 +511,30 @@ export {default as ListUl} from './ListUl'; export {default as LocationArrow} from './LocationArrow'; export {default as LocationArrowFill} from './LocationArrowFill'; export {default as Lock} from './Lock'; +export {default as LockFill} from './LockFill'; export {default as LockOpen} from './LockOpen'; +export {default as LockOpenFill} from './LockOpenFill'; export {default as LogoAcrobat} from './LogoAcrobat'; export {default as LogoAndroid} from './LogoAndroid'; +export {default as LogoDebian} from './LogoDebian'; export {default as LogoDocker} from './LogoDocker'; export {default as LogoDrawIo} from './LogoDrawIo'; export {default as LogoFacebook} from './LogoFacebook'; +export {default as LogoFigma} from './LogoFigma'; +export {default as LogoGithub} from './LogoGithub'; export {default as LogoGitlab} from './LogoGitlab'; +export {default as LogoLinkedin} from './LogoLinkedin'; export {default as LogoLinux} from './LogoLinux'; export {default as LogoMacos} from './LogoMacos'; export {default as LogoMarkdown} from './LogoMarkdown'; export {default as LogoMcp} from './LogoMcp'; export {default as LogoMermaid} from './LogoMermaid'; +export {default as LogoMicrosoftOffice} from './LogoMicrosoftOffice'; +export {default as LogoNodejs} from './LogoNodejs'; export {default as LogoNotion} from './LogoNotion'; export {default as LogoOsi} from './LogoOsi'; export {default as LogoPython} from './LogoPython'; +export {default as LogoSlack} from './LogoSlack'; export {default as LogoStackOverflow} from './LogoStackOverflow'; export {default as LogoTelegram} from './LogoTelegram'; export {default as LogoUbuntu} from './LogoUbuntu'; @@ -529,6 +558,7 @@ export {default as Medal} from './Medal'; export {default as Megaphone} from './Megaphone'; export {default as Microphone} from './Microphone'; export {default as MicrophoneSlash} from './MicrophoneSlash'; +export {default as Microscope} from './Microscope'; export {default as Minus} from './Minus'; export {default as MinusShape} from './MinusShape'; export {default as MinusShapeFill} from './MinusShapeFill'; @@ -559,6 +589,7 @@ export {default as ObjectsAlignRight} from './ObjectsAlignRight'; export {default as ObjectsAlignTop} from './ObjectsAlignTop'; export {default as OctagonXmark} from './OctagonXmark'; export {default as OfficeBadge} from './OfficeBadge'; +export {default as Paintbrush} from './Paintbrush'; export {default as Palette} from './Palette'; export {default as PaperPlane} from './PaperPlane'; export {default as Paperclip} from './Paperclip'; @@ -589,6 +620,8 @@ export {default as PinFill} from './PinFill'; export {default as PinSlash} from './PinSlash'; export {default as PinSlashFill} from './PinSlashFill'; export {default as Pipeline} from './Pipeline'; +export {default as Plane} from './Plane'; +export {default as PlaneFill} from './PlaneFill'; export {default as PlanetEarth} from './PlanetEarth'; export {default as Play} from './Play'; export {default as PlayFill} from './PlayFill'; @@ -636,6 +669,7 @@ export {default as Snail} from './Snail'; export {default as Snowflake} from './Snowflake'; export {default as Sparkles} from './Sparkles'; export {default as SparklesFill} from './SparklesFill'; +export {default as Speedometer} from './Speedometer'; export {default as Sphere} from './Sphere'; export {default as Square} from './Square'; export {default as SquareArticle} from './SquareArticle'; @@ -674,7 +708,9 @@ export {default as Stopwatch} from './Stopwatch'; export {default as Strikethrough} from './Strikethrough'; export {default as Suitcase} from './Suitcase'; export {default as Sun} from './Sun'; +export {default as Superscript} from './Superscript'; export {default as TShirt} from './TShirt'; +export {default as Tachometer} from './Tachometer'; export {default as Tag} from './Tag'; export {default as TagDollar} from './TagDollar'; export {default as TagRuble} from './TagRuble'; @@ -723,6 +759,7 @@ export {default as Tv} from './Tv'; export {default as TvRetro} from './TvRetro'; export {default as Umbrella} from './Umbrella'; export {default as Underline} from './Underline'; +export {default as UniversalAccess} from './UniversalAccess'; export {default as Vault} from './Vault'; export {default as VectorCircle} from './VectorCircle'; export {default as VectorSquare} from './VectorSquare'; diff --git a/metadata.json b/metadata.json index 814a3f5..b60d6e4 100644 --- a/metadata.json +++ b/metadata.json @@ -35,6 +35,27 @@ "componentName": "AbbrZip", "keywords": [] }, + { + "name": "alarm", + "style": "fill", + "svgName": "alarm-fill", + "componentName": "AlarmFill", + "keywords": [] + }, + { + "name": "alarm", + "style": "regular", + "svgName": "alarm", + "componentName": "Alarm", + "keywords": [] + }, + { + "name": "almost-equal", + "style": "regular", + "svgName": "almost-equal", + "componentName": "AlmostEqual", + "keywords": [] + }, { "name": "antenna-signal", "style": "regular", @@ -102,6 +123,20 @@ "componentName": "ArrowDownFromLine", "keywords": [] }, + { + "name": "arrow-down-left", + "style": "regular", + "svgName": "arrow-down-left", + "componentName": "ArrowDownLeft", + "keywords": [] + }, + { + "name": "arrow-down-right", + "style": "regular", + "svgName": "arrow-down-right", + "componentName": "ArrowDownRight", + "keywords": [] + }, { "name": "arrow-down-to-line", "style": "regular", @@ -199,6 +234,13 @@ "refresh" ] }, + { + "name": "arrow-rotate-left-number-5", + "style": "regular", + "svgName": "arrow-rotate-left-number-5", + "componentName": "ArrowRotateLeftNumber5", + "keywords": [] + }, { "name": "arrow-rotate-right", "style": "regular", @@ -208,6 +250,13 @@ "refresh" ] }, + { + "name": "arrow-rotate-right-number-5", + "style": "regular", + "svgName": "arrow-rotate-right-number-5", + "componentName": "ArrowRotateRightNumber5", + "keywords": [] + }, { "name": "arrow-shape-down", "style": "regular", @@ -351,6 +400,20 @@ "share" ] }, + { + "name": "arrow-up-left", + "style": "regular", + "svgName": "arrow-up-left", + "componentName": "ArrowUpLeft", + "keywords": [] + }, + { + "name": "arrow-up-right", + "style": "regular", + "svgName": "arrow-up-right", + "componentName": "ArrowUpRight", + "keywords": [] + }, { "name": "arrow-up-right-from-square", "style": "regular", @@ -772,6 +835,13 @@ "favourites" ] }, + { + "name": "books", + "style": "regular", + "svgName": "books", + "componentName": "Books", + "keywords": [] + }, { "name": "box", "style": "regular", @@ -816,6 +886,15 @@ "bag" ] }, + { + "name": "briefcase", + "style": "fill", + "svgName": "briefcase-fill", + "componentName": "BriefcaseFill", + "keywords": [ + "bag" + ] + }, { "name": "broadcast-signal", "style": "regular", @@ -833,6 +912,13 @@ "delete" ] }, + { + "name": "broom-motion", + "style": "fill", + "svgName": "broom-motion-fill", + "componentName": "BroomMotionFill", + "keywords": [] + }, { "name": "brush", "style": "regular", @@ -891,6 +977,13 @@ "event" ] }, + { + "name": "calendar-xmark", + "style": "regular", + "svgName": "calendar-xmark", + "componentName": "CalendarXmark", + "keywords": [] + }, { "name": "camera", "style": "regular", @@ -1062,6 +1155,13 @@ "plot" ] }, + { + "name": "chart-line-arrow-up", + "style": "regular", + "svgName": "chart-line-arrow-up", + "componentName": "ChartLineArrowUp", + "keywords": [] + }, { "name": "chart-line-label", "style": "regular", @@ -1069,6 +1169,13 @@ "componentName": "ChartLineLabel", "keywords": [] }, + { + "name": "chart-line-points", + "style": "regular", + "svgName": "chart-line-points", + "componentName": "ChartLinePoints", + "keywords": [] + }, { "name": "chart-mixed", "style": "regular", @@ -1974,6 +2081,13 @@ "componentName": "CircleStopFill", "keywords": [] }, + { + "name": "circle-tree", + "style": "regular", + "svgName": "circle-tree", + "componentName": "CircleTree", + "keywords": [] + }, { "name": "circle-xmark", "style": "regular", @@ -2727,6 +2841,13 @@ "transparency" ] }, + { + "name": "eye-closed", + "style": "regular", + "svgName": "eye-closed", + "componentName": "EyeClosed", + "keywords": [] + }, { "name": "eye-dashed", "style": "regular", @@ -2809,6 +2930,13 @@ "componentName": "FaceRobot", "keywords": [] }, + { + "name": "face-robot-smile", + "style": "regular", + "svgName": "face-robot-smile", + "componentName": "FaceRobotSmile", + "keywords": [] + }, { "name": "face-sad", "style": "regular", @@ -3084,6 +3212,13 @@ "touch" ] }, + { + "name": "firewall", + "style": "regular", + "svgName": "firewall", + "componentName": "Firewall", + "keywords": [] + }, { "name": "flag", "style": "regular", @@ -3411,6 +3546,13 @@ "componentName": "GearPlay", "keywords": [] }, + { + "name": "gem", + "style": "regular", + "svgName": "gem", + "componentName": "Gem", + "keywords": [] + }, { "name": "geo", "style": "regular", @@ -4144,6 +4286,16 @@ "safe" ] }, + { + "name": "lock", + "style": "fill", + "svgName": "lock-fill", + "componentName": "LockFill", + "keywords": [ + "security", + "safe" + ] + }, { "name": "lock-open", "style": "regular", @@ -4154,6 +4306,16 @@ "safe" ] }, + { + "name": "lock-open", + "style": "fill", + "svgName": "lock-open-fill", + "componentName": "LockOpenFill", + "keywords": [ + "security", + "safe" + ] + }, { "name": "logo-acrobat", "style": "regular", @@ -4168,6 +4330,13 @@ "componentName": "LogoAndroid", "keywords": [] }, + { + "name": "logo-debian", + "style": "regular", + "svgName": "logo-debian", + "componentName": "LogoDebian", + "keywords": [] + }, { "name": "logo-docker", "style": "regular", @@ -4189,6 +4358,20 @@ "componentName": "LogoFacebook", "keywords": [] }, + { + "name": "logo-figma", + "style": "regular", + "svgName": "logo-figma", + "componentName": "LogoFigma", + "keywords": [] + }, + { + "name": "logo-github", + "style": "regular", + "svgName": "logo-github", + "componentName": "LogoGithub", + "keywords": [] + }, { "name": "logo-gitlab", "style": "regular", @@ -4196,6 +4379,13 @@ "componentName": "LogoGitlab", "keywords": [] }, + { + "name": "logo-linkedin", + "style": "regular", + "svgName": "logo-linkedin", + "componentName": "LogoLinkedin", + "keywords": [] + }, { "name": "logo-linux", "style": "regular", @@ -4231,6 +4421,20 @@ "componentName": "LogoMermaid", "keywords": [] }, + { + "name": "logo-microsoft-office", + "style": "regular", + "svgName": "logo-microsoft-office", + "componentName": "LogoMicrosoftOffice", + "keywords": [] + }, + { + "name": "logo-nodejs", + "style": "regular", + "svgName": "logo-nodejs", + "componentName": "LogoNodejs", + "keywords": [] + }, { "name": "logo-notion", "style": "regular", @@ -4255,6 +4459,13 @@ "componentName": "LogoPython", "keywords": [] }, + { + "name": "logo-slack", + "style": "regular", + "svgName": "logo-slack", + "componentName": "LogoSlack", + "keywords": [] + }, { "name": "logo-stack-overflow", "style": "regular", @@ -4438,6 +4649,13 @@ "voice" ] }, + { + "name": "microscope", + "style": "regular", + "svgName": "microscope", + "componentName": "Microscope", + "keywords": [] + }, { "name": "minus", "style": "regular", @@ -4657,6 +4875,13 @@ "componentName": "OfficeBadge", "keywords": [] }, + { + "name": "paintbrush", + "style": "regular", + "svgName": "paintbrush", + "componentName": "Paintbrush", + "keywords": [] + }, { "name": "palette", "style": "regular", @@ -4938,6 +5163,20 @@ "componentName": "Pipeline", "keywords": [] }, + { + "name": "plane", + "style": "fill", + "svgName": "plane-fill", + "componentName": "PlaneFill", + "keywords": [] + }, + { + "name": "plane", + "style": "regular", + "svgName": "plane", + "componentName": "Plane", + "keywords": [] + }, { "name": "planet-earth", "style": "regular", @@ -5335,6 +5574,13 @@ "ai" ] }, + { + "name": "speedometer", + "style": "regular", + "svgName": "speedometer", + "componentName": "Speedometer", + "keywords": [] + }, { "name": "sphere", "style": "regular", @@ -5665,6 +5911,13 @@ "day" ] }, + { + "name": "superscript", + "style": "regular", + "svgName": "superscript", + "componentName": "Superscript", + "keywords": [] + }, { "name": "t-shirt", "style": "regular", @@ -5674,6 +5927,13 @@ "clothes" ] }, + { + "name": "tachometer", + "style": "regular", + "svgName": "tachometer", + "componentName": "Tachometer", + "keywords": [] + }, { "name": "tag", "style": "regular", @@ -6069,6 +6329,13 @@ "format" ] }, + { + "name": "universal-access", + "style": "regular", + "svgName": "universal-access", + "componentName": "UniversalAccess", + "keywords": [] + }, { "name": "vault", "style": "regular", diff --git a/svgs/alarm-fill.svg b/svgs/alarm-fill.svg new file mode 100644 index 0000000..8a883dd --- /dev/null +++ b/svgs/alarm-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/alarm.svg b/svgs/alarm.svg new file mode 100644 index 0000000..330e0f0 --- /dev/null +++ b/svgs/alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/almost-equal.svg b/svgs/almost-equal.svg new file mode 100644 index 0000000..5737681 --- /dev/null +++ b/svgs/almost-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-down-left.svg b/svgs/arrow-down-left.svg new file mode 100644 index 0000000..36fb45b --- /dev/null +++ b/svgs/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-down-right.svg b/svgs/arrow-down-right.svg new file mode 100644 index 0000000..acf149e --- /dev/null +++ b/svgs/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-rotate-left-number-5.svg b/svgs/arrow-rotate-left-number-5.svg new file mode 100644 index 0000000..a9daaff --- /dev/null +++ b/svgs/arrow-rotate-left-number-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-rotate-right-number-5.svg b/svgs/arrow-rotate-right-number-5.svg new file mode 100644 index 0000000..8dc3d04 --- /dev/null +++ b/svgs/arrow-rotate-right-number-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-up-left.svg b/svgs/arrow-up-left.svg new file mode 100644 index 0000000..eb0ed1d --- /dev/null +++ b/svgs/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/arrow-up-right.svg b/svgs/arrow-up-right.svg new file mode 100644 index 0000000..7e582be --- /dev/null +++ b/svgs/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/books.svg b/svgs/books.svg new file mode 100644 index 0000000..d45039b --- /dev/null +++ b/svgs/books.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/briefcase-fill.svg b/svgs/briefcase-fill.svg new file mode 100644 index 0000000..1ca4f09 --- /dev/null +++ b/svgs/briefcase-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/broom-motion-fill.svg b/svgs/broom-motion-fill.svg new file mode 100644 index 0000000..6c5aad3 --- /dev/null +++ b/svgs/broom-motion-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/broom-motion.svg b/svgs/broom-motion.svg index c652242..51b6e56 100644 --- a/svgs/broom-motion.svg +++ b/svgs/broom-motion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/calendar-xmark.svg b/svgs/calendar-xmark.svg new file mode 100644 index 0000000..040a83a9 --- /dev/null +++ b/svgs/calendar-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/chart-line-arrow-up.svg b/svgs/chart-line-arrow-up.svg new file mode 100644 index 0000000..0870ee1 --- /dev/null +++ b/svgs/chart-line-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/chart-line-points.svg b/svgs/chart-line-points.svg new file mode 100644 index 0000000..4ab5f6a --- /dev/null +++ b/svgs/chart-line-points.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/check-double.svg b/svgs/check-double.svg index 010d19e..2ac9de7 100644 --- a/svgs/check-double.svg +++ b/svgs/check-double.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-tree.svg b/svgs/circle-tree.svg new file mode 100644 index 0000000..c793950 --- /dev/null +++ b/svgs/circle-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/eye-closed.svg b/svgs/eye-closed.svg new file mode 100644 index 0000000..89ad045 --- /dev/null +++ b/svgs/eye-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/face-robot-smile.svg b/svgs/face-robot-smile.svg new file mode 100644 index 0000000..9284154 --- /dev/null +++ b/svgs/face-robot-smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/firewall.svg b/svgs/firewall.svg new file mode 100644 index 0000000..3c237e8 --- /dev/null +++ b/svgs/firewall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/gem.svg b/svgs/gem.svg new file mode 100644 index 0000000..a010bfa --- /dev/null +++ b/svgs/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/lock-fill.svg b/svgs/lock-fill.svg new file mode 100644 index 0000000..d488075 --- /dev/null +++ b/svgs/lock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/lock-open-fill.svg b/svgs/lock-open-fill.svg new file mode 100644 index 0000000..4d57d68 --- /dev/null +++ b/svgs/lock-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-debian.svg b/svgs/logo-debian.svg new file mode 100644 index 0000000..cbc4d62 --- /dev/null +++ b/svgs/logo-debian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-figma.svg b/svgs/logo-figma.svg new file mode 100644 index 0000000..9b7eb08 --- /dev/null +++ b/svgs/logo-figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-github.svg b/svgs/logo-github.svg new file mode 100644 index 0000000..550f3ed --- /dev/null +++ b/svgs/logo-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-linkedin.svg b/svgs/logo-linkedin.svg new file mode 100644 index 0000000..c65c498 --- /dev/null +++ b/svgs/logo-linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-microsoft-office.svg b/svgs/logo-microsoft-office.svg new file mode 100644 index 0000000..99473b5 --- /dev/null +++ b/svgs/logo-microsoft-office.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-nodejs.svg b/svgs/logo-nodejs.svg new file mode 100644 index 0000000..c525b48 --- /dev/null +++ b/svgs/logo-nodejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/logo-slack.svg b/svgs/logo-slack.svg new file mode 100644 index 0000000..57c1ad8 --- /dev/null +++ b/svgs/logo-slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/microscope.svg b/svgs/microscope.svg new file mode 100644 index 0000000..86264f5 --- /dev/null +++ b/svgs/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/paintbrush.svg b/svgs/paintbrush.svg new file mode 100644 index 0000000..7ed24a4 --- /dev/null +++ b/svgs/paintbrush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/plane-fill.svg b/svgs/plane-fill.svg new file mode 100644 index 0000000..b80687a --- /dev/null +++ b/svgs/plane-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/plane.svg b/svgs/plane.svg new file mode 100644 index 0000000..224ca65 --- /dev/null +++ b/svgs/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/speedometer.svg b/svgs/speedometer.svg new file mode 100644 index 0000000..b411c16 --- /dev/null +++ b/svgs/speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/superscript.svg b/svgs/superscript.svg new file mode 100644 index 0000000..92e406b --- /dev/null +++ b/svgs/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/tachometer.svg b/svgs/tachometer.svg new file mode 100644 index 0000000..3ddb839 --- /dev/null +++ b/svgs/tachometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svgs/universal-access.svg b/svgs/universal-access.svg new file mode 100644 index 0000000..89b6e3e --- /dev/null +++ b/svgs/universal-access.svg @@ -0,0 +1 @@ + \ No newline at end of file