generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 7
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
a9c033d
commit a043a85
Showing
5 changed files
with
198 additions
and
14 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
167 changes: 159 additions & 8 deletions
167
digiwf-apps/packages/apps/digiwf-tasklist/package-lock.json
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
24 changes: 24 additions & 0 deletions
24
digiwf-apps/packages/apps/digiwf-tasklist/src/components/UI/icons/HighContrastIcon.vue
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,24 @@ | ||
<template> | ||
<svg-icon | ||
type="mdi" | ||
:path="path"/> | ||
</template> | ||
|
||
|
||
<script> | ||
import SvgIcon from "@jamescoyle/vue-icon"; | ||
import {mdiContrastBox } from "@mdi/js"; | ||
export default { | ||
name: "HighContrastIcon", | ||
components: { | ||
SvgIcon | ||
}, | ||
data() { | ||
return { | ||
path: mdiContrastBox , | ||
}; | ||
} | ||
}; | ||
</script> |