-
Notifications
You must be signed in to change notification settings - Fork 37
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
Showing
4 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
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,16 @@ | ||
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/cross-circle-outline.svg` to regenerate; | ||
import React from 'react' | ||
|
||
function SvgCrossCircleOutline(props) { | ||
return ( | ||
<svg viewBox="0 0 16 16" {...props}> | ||
<path d="M4.793 4.793a1 1 0 011.414 0L8 6.586l1.793-1.793a1 1 0 011.414 1.414L9.414 8l1.793 1.793a1 1 0 01-1.414 1.414L8 9.414l-1.793 1.793a1 1 0 01-1.414-1.414L6.586 8 4.793 6.207a1 1 0 010-1.414z" /> | ||
<path | ||
fillRule="evenodd" | ||
d="M16 8c0-4.416-3.584-8-8-8S0 3.584 0 8s3.584 8 8 8 8-3.584 8-8zm-2 0c0-3.311-2.689-6-6-6S2 4.689 2 8s2.689 6 6 6 6-2.689 6-6z" | ||
/> | ||
</svg> | ||
) | ||
} | ||
|
||
export default SvgCrossCircleOutline |
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