-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
9289944
commit 0c1b04d
Showing
5 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 @@ | ||
export function volumeHigh(): SVGSVGElement { | ||
const svgEl = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); | ||
|
||
svgEl.setAttribute( | ||
'viewBox', | ||
`0 0 ${__VOLUME_HIGH_ICON_WIDTH__} ${__VOLUME_HIGH_ICON_HEIGHT__}`, | ||
); | ||
|
||
const pathEl = document.createElementNS( | ||
'http://www.w3.org/2000/svg', | ||
'path', | ||
); | ||
|
||
pathEl.setAttribute('d', __VOLUME_HIGH_ICON__); | ||
|
||
svgEl.append(pathEl); | ||
|
||
return svgEl; | ||
} |
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,3 @@ | ||
declare const __VOLUME_HIGH_ICON__: string; | ||
declare const __VOLUME_HIGH_ICON_WIDTH__: string; | ||
declare const __VOLUME_HIGH_ICON_HEIGHT__: string; |
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