-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace icons and chnage some prompts
- Loading branch information
1 parent
29eab8f
commit 1fe03cf
Showing
9 changed files
with
126 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 @@ | ||
const ThumbsDownIcon = (props) => { | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
{...props} | ||
> | ||
<g | ||
stroke="#325a9a" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={2} | ||
> | ||
<path d="M21 14a1 1 0 0 1-1 1h-3V3h3a1 1 0 0 1 1 1v10ZM17 13V5l-1.992-1.328A4 4 0 0 0 12.788 3H7.542a3 3 0 0 0-2.959 2.507L3.388 12.67A2 2 0 0 0 5.361 15H10" /> | ||
<path d="m10 15-.687 3.436a1.807 1.807 0 0 0 1.2 2.068v0a1.807 1.807 0 0 0 2.188-.906L16 13h1" /> | ||
</g> | ||
</svg> ); | ||
}; | ||
|
||
export default ThumbsDownIcon; |
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 @@ | ||
const ThumbsUpIcon = (props) => { | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
stroke="#000" | ||
viewBox="0 0 24 24" | ||
{...props} | ||
> | ||
<g | ||
stroke="#325a9a" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2" | ||
> | ||
<path d="M3 10a1 1 0 011-1h3v12H4a1 1 0 01-1-1V10zM7 11v8l1.992 1.328a4 4 0 002.22.672h5.247a3 3 0 002.959-2.507l1.194-7.164A2 2 0 0018.639 9H14"></path> | ||
<path d="M14 9l.687-3.436a1.807 1.807 0 00-1.2-2.068v0a1.807 1.807 0 00-2.188.906L8 11H7"></path> | ||
</g> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default ThumbsUpIcon; |
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
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