Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Add typing for icons
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed May 7, 2025
commit ca1f74a8554a91d05c441d9733b8d8b9ef8d382e
17 changes: 17 additions & 0 deletions src/vue-icons.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
declare module 'vue-material-design-icons/*.vue' {
import type { DefineComponent } from 'vue'

const IconVue: DefineComponent<{
/// `size` defaults to 24
size?: number;
/// `fillColor` defaults to 'currentColor'
fillColor?: string;
title?: string;
}>

export default IconVue
}