Skip to content

Commit

Permalink
Adding Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
édouard wautier authored and édouard wautier committed Oct 4, 2023
1 parent 8b366b0 commit 88786f5
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sparkle/src/_index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -253,6 +254,7 @@ export {
PlusCircleIcon,
PlusIcon,
QuestionMarkCircleIcon,
ReactionIcon,
RobotIcon,
ServerIcon,
ShakeHandsIcon,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -399,6 +402,7 @@ export {
PlusCircleStrokeIcon,
PlusStrokeIcon,
QuestionMarkCircleStrokeIcon,
ReactionStrokeIcon,
RobotStrokeIcon,
ServerStrokeIcon,
ShakeHandsStrokeIcon,
Expand Down
21 changes: 21 additions & 0 deletions sparkle/src/icons/solid/Reaction.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { SVGProps } from "react";
import * as React from "react";
const SvgReaction = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path fill="currentColor" d="M19 0h2v3h3v2h-3v3h-2V5h-3V3h3V0Z" />
<path
fill="currentColor"
fillRule="evenodd"
d="M12 22c5.523 0 10-4.477 10-10 0-1.045-.16-2.053-.458-3H18a3 3 0 0 0-3-3V2.458A9.996 9.996 0 0 0 12 2C6.477 2 2 6.477 2 12s4.477 10 10 10ZM7 11a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm8 2a4 4 0 0 1-8 0h8Zm-1.5-3.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z"
clipRule="evenodd"
/>
</svg>
);
export default SvgReaction;
1 change: 1 addition & 0 deletions sparkle/src/icons/solid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 4 additions & 0 deletions sparkle/src/icons/src/solid/reaction.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions sparkle/src/icons/src/stroke/reaction.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions sparkle/src/icons/stroke/Reaction.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import type { SVGProps } from "react";
import * as React from "react";
const SvgReaction = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path fill="currentColor" d="M19 0h2v3h3v2h-3v3h-2V5h-3V3h3V0Z" />
<path
fill="currentColor"
d="M14 2.2c-.646-.131-1.315-.2-2-.2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-.685-.069-1.354-.2-2h-2.052A8 8 0 1 1 14 4.252V2.2Z"
/>
<path
fill="currentColor"
d="M11 17a4 4 0 0 0 4-4H7a4 4 0 0 0 4 4ZM7 11a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM13.5 9.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z"
/>
</svg>
);
export default SvgReaction;
1 change: 1 addition & 0 deletions sparkle/src/icons/stroke/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 88786f5

Please sign in to comment.