-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
édouard wautier
authored and
édouard wautier
committed
Oct 4, 2023
1 parent
8b366b0
commit 88786f5
Showing
7 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters