Fix lucide-vue-next stroke-width must be number bug (#1492)

This commit is contained in:
Zara
2023-08-11 21:29:23 +08:00
committed by GitHub
parent 8cff59627b
commit 70cffa8dd2

View File

@@ -30,7 +30,7 @@ declare module 'lucide-vue-next'
// Create interface extending SVGAttributes
export interface SVGProps extends Partial<SVGAttributes> {
size?: 24 | number
strokeWidth?: number
strokeWidth?: number | string
absoluteStrokeWidth?: boolean
}