diff --git a/src/components/LoadingIcon/LoadingIcon.vue b/src/components/LoadingIcon/LoadingIcon.vue new file mode 100644 index 0000000000..27ed6536af --- /dev/null +++ b/src/components/LoadingIcon/LoadingIcon.vue @@ -0,0 +1,58 @@ + + + + + + + diff --git a/src/components/LoadingIcon/index.js b/src/components/LoadingIcon/index.js new file mode 100644 index 0000000000..3218a53a4a --- /dev/null +++ b/src/components/LoadingIcon/index.js @@ -0,0 +1,25 @@ +/** + * @copyright Copyright (c) 2022 Raimund Schlüßler + * + * @author Raimund Schlüßler + * + * @license AGPL-3.0-or-later + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +import LoadingIcon from './LoadingIcon.vue' + +export default LoadingIcon diff --git a/src/components/index.js b/src/components/index.js index afe68f190a..1dd1c75a29 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -61,6 +61,7 @@ export { default as DatetimePicker } from './DatetimePicker/index.js' export { default as EmptyContent } from './EmptyContent/index.js' export { default as ListItem } from './ListItem/index.js' export { default as ListItemIcon } from './ListItemIcon/index.js' +export { default as LoadingIcon } from './LoadingIcon/index.js' export { default as Modal } from './Modal/index.js' export { default as Multiselect } from './Multiselect/index.js' export { default as MultiselectTags } from './MultiselectTags/index.js'