-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JSDoc comments to Icons object for better documentation
- Loading branch information
tech_e
committed
Dec 10, 2024
1 parent
2985c7b
commit 363d7cc
Showing
1 changed file
with
6 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
/** | ||
* This will store the svg icons. | ||
* | ||
* @type {object} Icons | ||
*/ | ||
export const Icons = | ||
{ | ||
progress: '<svg id="level-progress-image" xmlns="http://www.w3.org/2000/svg" width="83" height="83" viewBox="0 0 83.2 83.6"><path d="M74.7 21 62.2 8.5C50.9-2.8 32.3-2.8 21 8.5L8.5 21c-11.3 11.3-11.3 29.9 0 41.2L21 74.7C32.3 86 50.9 86 62.2 74.7l12.5-12.5C86 50.9 86 32.3 74.7 21zm-3.3 39.1L60.1 71.4c-10.2 10.2-26.9 10.2-37.1 0L11.8 60.1C1.6 49.9 1.6 33.2 11.8 23L23 11.8c10.2-10.2 26.9-10.2 37.1 0L71.4 23c10.2 10.2 10.2 26.9 0 37.1z" style="opacity:.2;fill:#fff;stroke-width:0;enable-background:new"/><path d="M60.82 72.582c-10.606 10.605-27.968 10.605-38.572 0L10.603 60.834c-10.605-10.605-10.605-27.967 0-38.57l11.644-11.645C32.852.013 50.214.013 60.817 10.62l11.75 11.643c10.604 10.605 10.604 27.967 0 38.57l-11.748 11.75" style="fill:none;stroke:#ff4881;stroke-width:4;stroke-miterlimit:10"/></svg>' | ||
} | ||
}; |