Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 26cd317e authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #3950 from nextcloud/fix/3945-icon+_as_icon

Add plus-icon for AppNavigationHeaderNewEvent
parents 719b4a8f c43635e4
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -26,13 +26,18 @@
		class="button primary new-event"
		@click="newEvent"
		@shortkey="newEvent">
		{{ $t('calendar', '+ New event') }}
		<Plus :size="20" />
		{{ $t('calendar', 'New event') }}
	</button>
</template>

<script>
import Plus from 'vue-material-design-icons/Plus.vue'
export default {
	name: 'AppNavigationHeaderNewEvent',
	components: {
		Plus,
	},
	methods: {
		/**
		 * Opens the new event dialog
@@ -43,3 +48,10 @@ export default {
	},
}
</script>

<style scoped>
.button.primary.new-event {
	display: flex;
	align-items: center;
}
</style>