-
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.
Loading status checks…
feat: Add Task icon
- v117.3.0
- v117.2.2
- v117.2.1
- v117.2.0
- v117.1.0
- v117.0.0
- v116.0.0
- v115.1.0
- v115.0.2
- v115.0.1
- v115.0.0
- v114.0.1
- v114.0.0
- v113.9.0
- v113.8.0
- v113.7.1
- v113.7.0
- v113.6.0
- v113.5.0
- v113.4.0
- v113.3.0
- v113.2.0
- v113.1.0
- v113.0.0
- v112.3.0
- v112.2.0
- v112.1.0
- v112.0.0
- v111.21.0
- v111.20.0
- v111.19.0
- v111.18.1
- v111.18.0
- v111.17.0
- v111.16.0
- v111.15.2
- v111.15.1
- v111.15.0
- v111.14.0
- v111.13.0
- v111.12.0
- v111.11.0
- v111.10.0
- v111.9.0
- v111.8.1
- v111.8.0
- v111.7.0
- v111.6.0
- v111.5.0
- v111.4.0
- v111.3.1
- v111.3.0
- v111.2.0
- v111.1.1
- v111.1.0
- v111.0.0
- v110.8.2
- v110.8.1
- v110.8.0
- v110.7.1
- v110.7.0
- v110.6.0
- v110.5.0
- v110.4.0
- v110.3.0
- v110.2.0
- v110.1.1
- v110.1.0
- v110.0.1
- v110.0.0
- v109.2.0
Showing
3 changed files
with
21 additions
and
1 deletion.
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,17 @@ | ||
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/task.svg` to regenerate; | ||
import React from 'react' | ||
|
||
function SvgTask(props) { | ||
return ( | ||
<svg viewBox="0 0 16 16" {...props}> | ||
<path d="M5 4a1 1 0 000 2h6a1 1 0 100-2H5zM4 8a1 1 0 011-1h6a1 1 0 110 2H5a1 1 0 01-1-1zm1 2a1 1 0 100 2h6a1 1 0 100-2H5z" /> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M0 2a2 2 0 012-2h12a2 2 0 012 2v12a2 2 0 01-2 2H2a2 2 0 01-2-2V2zm2 0h12v12H2V2z" | ||
/> | ||
</svg> | ||
) | ||
} | ||
|
||
export default SvgTask |