-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Icon): Add compare and clock-outline icons
- Loading branch information
Showing
6 changed files
with
247 additions
and
179 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.
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,15 @@ | ||
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/clock-outline.svg` to regenerate; | ||
import React from 'react' | ||
|
||
function SvgClockOutline(props) { | ||
return ( | ||
<svg viewBox="0 0 16 16" {...props}> | ||
<path | ||
clipRule="evenodd" | ||
d="M8 0a8 8 0 110 16A8 8 0 018 0zm0 2a6 6 0 100 12A6 6 0 008 2zm0 2a1 1 0 01.993.883L9 5v2.6l2 1.9a1 1 0 01-1.32 1.497l-.094-.083-2.293-2.207a1 1 0 01-.284-.576L7 8V5a1 1 0 011-1z" | ||
/> | ||
</svg> | ||
) | ||
} | ||
|
||
export default SvgClockOutline |
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,15 @@ | ||
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/compare.svg` to regenerate; | ||
import React from 'react' | ||
|
||
function SvgCompare(props) { | ||
return ( | ||
<svg viewBox="0 0 16 16" {...props}> | ||
<path | ||
clipRule="evenodd" | ||
d="M1 6h4.586L4.293 7.293a1 1 0 001.414 1.414l3-3a1 1 0 000-1.414l-3-3a1 1 0 00-1.414 1.414L5.586 4H1a1 1 0 000 2zm14 4h-4.586l1.293-1.293a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L10.414 12H15a1 1 0 100-2z" | ||
/> | ||
</svg> | ||
) | ||
} | ||
|
||
export default SvgCompare |
Oops, something went wrong.