We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d036a1 commit 2063656Copy full SHA for 2063656
2 files changed
src/components/NcIcon/NcIcon.vue
@@ -4,14 +4,16 @@
4
-->
5
6
<script setup lang="ts">
7
+import type { NcIconName } from './types.d.ts'
8
+
9
import { generateFilePath } from '@nextcloud/router'
10
import { computed } from 'vue'
11
12
const props = withDefaults(defineProps<{
13
/**
14
* The name of the icon to use.
15
*/
- icon: string
16
+ icon: NcIconName
17
18
19
* If set the icon will be mirrored in right-to-left languages.
0 commit comments