-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use the new custom rejected comment icon created by Sam
- Loading branch information
Showing
3 changed files
with
35 additions
and
3 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
31 changes: 31 additions & 0 deletions
31
client/src/core/client/ui/components/icons/RejectCommentBoxIcon.tsx
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,31 @@ | ||
import React, { FunctionComponent } from "react"; | ||
|
||
const BinIcon: FunctionComponent = () => { | ||
// Custom: created by Sam Hankins | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"> | ||
<path | ||
fill="currentColor" | ||
d="M16.3125 14.0625H8.4375L3.9375 17.4375V14.0625H1.6875C1.0875 14.0625 0.5625 13.5375 0.5625 12.9375V1.6875C0.5625 1.0875 1.0875 0.5625 1.6875 0.5625H16.3125C16.9125 0.5625 17.4375 1.0875 17.4375 1.6875V12.9375C17.4375 13.5375 16.9125 14.0625 16.3125 14.0625Z" | ||
/> | ||
<path | ||
d="M6.01196 4.2644L11.914 10.1665" | ||
stroke="white" | ||
strokeWidth="1.25" | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M11.913 4.3836L6.01093 10.2857" | ||
stroke="white" | ||
strokeWidth="1.25" | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default BinIcon; |
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