-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(media): add reject icon and some fixes
feat(media): add reject icon and some fixes
- Loading branch information
1 parent
9ffd16d
commit 2ad7983
Showing
8 changed files
with
32 additions
and
8 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
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,13 @@ | ||
import React from 'react' | ||
|
||
const RejectIcon: React.FunctionComponent = () => ( | ||
<svg viewBox="0 0 24 24" focusable="false"> | ||
<circle cx="12" cy="12" r="12" /> | ||
<path | ||
fill="#FFF" | ||
d="M12 10.94l4.72-4.72a.75.75 0 0 1 1.06 1.06L13.06 12l4.72 4.72a.75.75 0 0 1-1.06 1.06L12 13.06l-4.72 4.72a.75.75 0 0 1-1.06-1.06L10.94 12 6.22 7.28a.75.75 0 0 1 1.06-1.06L12 10.94z" | ||
/> | ||
</svg> | ||
) | ||
|
||
export default RejectIcon |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import React from 'react' | ||
|
||
const AttentionIcon: React.FunctionComponent = () => ( | ||
<svg viewBox="0 0 40 40" focusable="false"> | ||
<circle cx="20" cy="20" r="20" /> | ||
const SuccessIcon: React.FunctionComponent = () => ( | ||
<svg viewBox="0 0 24 24" focusable="false"> | ||
<circle cx="12" cy="12" r="12" /> | ||
<path | ||
fill="#FFF" | ||
d="M16.94 26.06a1.5 1.5 0 0 0 2.12 0L29 15.122A1.5 1.5 0 0 0 26.879 13L18 23l-2.94-3.06a1.5 1.5 0 0 0-2.12 2.12l4 4z" | ||
d="M8.707 12.293a1 1 0 1 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l5.5-7.5a1 1 0 1 0-1.414-1.414L10.5 14.086l-1.793-1.793z" | ||
/> | ||
</svg> | ||
) | ||
|
||
export default AttentionIcon | ||
export default SuccessIcon |
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