-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 (#2345): use material design icons
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
- Loading branch information
Vinicius Reis
committed
May 13, 2022
1 parent
7a061ac
commit fab8ffd
Showing
5 changed files
with
168 additions
and
50 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
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,37 @@ | ||
import MdiLoading from 'vue-material-design-icons/Loading' | ||
|
||
export { default as Lock } from 'vue-material-design-icons/Lock' | ||
export { default as Undo } from 'vue-material-design-icons/ArrowULeftTop' | ||
export { default as Redo } from 'vue-material-design-icons/ArrowURightTop' | ||
export { default as Info } from 'vue-material-design-icons/Information' | ||
export { default as Positive } from 'vue-material-design-icons/CheckboxMarkedCircle' | ||
export { default as Warn } from 'vue-material-design-icons/AlertCircle' | ||
export { default as Danger } from 'vue-material-design-icons/AlertDecagram' | ||
export { default as CodeTags } from 'vue-material-design-icons/CodeTags' | ||
export { default as Table } from 'vue-material-design-icons/Table' | ||
export { default as Emoticon } from 'vue-material-design-icons/EmoticonOutline' | ||
export { default as Images } from 'vue-material-design-icons/ImageMultipleOutline' | ||
export { default as Help } from 'vue-material-design-icons/HelpCircle' | ||
export { default as Upload } from 'vue-material-design-icons/Upload' | ||
export { default as Folder } from 'vue-material-design-icons/Folder' | ||
export { default as FormatBold } from 'vue-material-design-icons/FormatBold' | ||
export { default as FormatItalic } from 'vue-material-design-icons/FormatItalic' | ||
export { default as FormatUnderline } from 'vue-material-design-icons/FormatUnderline' | ||
export { default as FormatStrikethrough } from 'vue-material-design-icons/FormatStrikethrough' | ||
export { default as FormatHeader1 } from 'vue-material-design-icons/FormatHeader1' | ||
export { default as FormatHeader2 } from 'vue-material-design-icons/FormatHeader2' | ||
export { default as FormatHeader3 } from 'vue-material-design-icons/FormatHeader3' | ||
export { default as FormatHeader4 } from 'vue-material-design-icons/FormatHeader4' | ||
export { default as FormatHeader5 } from 'vue-material-design-icons/FormatHeader5' | ||
export { default as FormatHeader6 } from 'vue-material-design-icons/FormatHeader6' | ||
export { default as FormatListNumbered } from 'vue-material-design-icons/FormatListNumbered' | ||
export { default as FormatListBulleted } from 'vue-material-design-icons/FormatListBulleted' | ||
export { default as FormatListCheckbox } from 'vue-material-design-icons/FormatListCheckbox' | ||
export { default as FormatQuote } from 'vue-material-design-icons/FormatQuoteClose' | ||
|
||
export const Loading = { | ||
functional: true, | ||
render(h) { | ||
return h(MdiLoading, { staticClass: 'animation-rotate' }) | ||
}, | ||
} |
Oops, something went wrong.