-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(theme-editor): could not resolve "@vicons/ionicons5" error, closes …
- Loading branch information
Showing
5 changed files
with
283 additions
and
210 deletions.
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
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 @@ | ||
import { h, defineComponent } from 'vue' | ||
|
||
export const MaximizeIcon = defineComponent({ | ||
render () { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<g fill="none"> | ||
<path | ||
d="M8.5 2a.5.5 0 0 0 0 1h3.793L3 12.293V8.5a.5.5 0 0 0-1 0v4.9a.6.6 0 0 0 .6.6h4.9a.5.5 0 0 0 0-1H3.707L13 3.707V7.5a.5.5 0 0 0 1 0V2.6a.6.6 0 0 0-.6-.6H8.5z" | ||
fill="currentColor" | ||
></path> | ||
</g> | ||
</svg> | ||
) | ||
} | ||
}) |
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,18 @@ | ||
import { h, defineComponent } from 'vue' | ||
|
||
export const MinimizeIcon = defineComponent({ | ||
render () { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> | ||
<path | ||
d="M4 18v2h6.586L2 28.582L3.414 30L12 21.414V28h2V18H4z" | ||
fill="currentColor" | ||
></path> | ||
<path | ||
d="M30 3.416L28.592 2L20 10.586V4h-2v10h10v-2h-6.586L30 3.416z" | ||
fill="currentColor" | ||
></path> | ||
</svg> | ||
) | ||
} | ||
}) |
Oops, something went wrong.