From 88786f53d2804aec2d787a814639a7c0b6b357fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9douard=20wautier?= Date: Wed, 4 Oct 2023 17:34:38 +0200 Subject: [PATCH] Adding Icons --- sparkle/src/_index.ts | 4 ++++ sparkle/src/icons/solid/Reaction.tsx | 21 +++++++++++++++++++++ sparkle/src/icons/solid/index.ts | 1 + sparkle/src/icons/src/solid/reaction.svg | 4 ++++ sparkle/src/icons/src/stroke/reaction.svg | 7 +++++++ sparkle/src/icons/stroke/Reaction.tsx | 23 +++++++++++++++++++++++ sparkle/src/icons/stroke/index.ts | 1 + 7 files changed, 61 insertions(+) create mode 100644 sparkle/src/icons/solid/Reaction.tsx create mode 100644 sparkle/src/icons/src/solid/reaction.svg create mode 100644 sparkle/src/icons/src/stroke/reaction.svg create mode 100644 sparkle/src/icons/stroke/Reaction.tsx diff --git a/sparkle/src/_index.ts b/sparkle/src/_index.ts index 79ec763d5af0..52fdcbeef5bc 100644 --- a/sparkle/src/_index.ts +++ b/sparkle/src/_index.ts @@ -180,6 +180,7 @@ import { Plus as PlusIcon, PlusCircle as PlusCircleIcon, QuestionMarkCircle as QuestionMarkCircleIcon, + Reaction as ReactionIcon, Robot as RobotIcon, Server as ServerIcon, ShakeHands as ShakeHandsIcon, @@ -253,6 +254,7 @@ export { PlusCircleIcon, PlusIcon, QuestionMarkCircleIcon, + ReactionIcon, RobotIcon, ServerIcon, ShakeHandsIcon, @@ -326,6 +328,7 @@ import { Plus as PlusStrokeIcon, PlusCircle as PlusCircleStrokeIcon, QuestionMarkCircle as QuestionMarkCircleStrokeIcon, + Reaction as ReactionStrokeIcon, Robot as RobotStrokeIcon, Server as ServerStrokeIcon, ShakeHands as ShakeHandsStrokeIcon, @@ -399,6 +402,7 @@ export { PlusCircleStrokeIcon, PlusStrokeIcon, QuestionMarkCircleStrokeIcon, + ReactionStrokeIcon, RobotStrokeIcon, ServerStrokeIcon, ShakeHandsStrokeIcon, diff --git a/sparkle/src/icons/solid/Reaction.tsx b/sparkle/src/icons/solid/Reaction.tsx new file mode 100644 index 000000000000..49146bf2569c --- /dev/null +++ b/sparkle/src/icons/solid/Reaction.tsx @@ -0,0 +1,21 @@ +import type { SVGProps } from "react"; +import * as React from "react"; +const SvgReaction = (props: SVGProps) => ( + + + + +); +export default SvgReaction; diff --git a/sparkle/src/icons/solid/index.ts b/sparkle/src/icons/solid/index.ts index 2a58a13a403f..a9d02472e357 100644 --- a/sparkle/src/icons/solid/index.ts +++ b/sparkle/src/icons/solid/index.ts @@ -55,6 +55,7 @@ export { default as Play } from "./Play"; export { default as Plus } from "./Plus"; export { default as PlusCircle } from "./PlusCircle"; export { default as QuestionMarkCircle } from "./QuestionMarkCircle"; +export { default as Reaction } from "./Reaction"; export { default as Robot } from "./Robot"; export { default as Server } from "./Server"; export { default as ShakeHands } from "./ShakeHands"; diff --git a/sparkle/src/icons/src/solid/reaction.svg b/sparkle/src/icons/src/solid/reaction.svg new file mode 100644 index 000000000000..4ff57d3d39bc --- /dev/null +++ b/sparkle/src/icons/src/solid/reaction.svg @@ -0,0 +1,4 @@ + + + + diff --git a/sparkle/src/icons/src/stroke/reaction.svg b/sparkle/src/icons/src/stroke/reaction.svg new file mode 100644 index 000000000000..b7ca46d49d3e --- /dev/null +++ b/sparkle/src/icons/src/stroke/reaction.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sparkle/src/icons/stroke/Reaction.tsx b/sparkle/src/icons/stroke/Reaction.tsx new file mode 100644 index 000000000000..d552b1a67954 --- /dev/null +++ b/sparkle/src/icons/stroke/Reaction.tsx @@ -0,0 +1,23 @@ +import type { SVGProps } from "react"; +import * as React from "react"; +const SvgReaction = (props: SVGProps) => ( + + + + + +); +export default SvgReaction; diff --git a/sparkle/src/icons/stroke/index.ts b/sparkle/src/icons/stroke/index.ts index 2a58a13a403f..a9d02472e357 100644 --- a/sparkle/src/icons/stroke/index.ts +++ b/sparkle/src/icons/stroke/index.ts @@ -55,6 +55,7 @@ export { default as Play } from "./Play"; export { default as Plus } from "./Plus"; export { default as PlusCircle } from "./PlusCircle"; export { default as QuestionMarkCircle } from "./QuestionMarkCircle"; +export { default as Reaction } from "./Reaction"; export { default as Robot } from "./Robot"; export { default as Server } from "./Server"; export { default as ShakeHands } from "./ShakeHands";