fix(esm): fix Feather icons import
This commit is contained in:
parent
b80494f473
commit
5b38c4e2fe
|
@ -1,6 +1,7 @@
|
||||||
import { icons } from 'feather-icons'
|
import feather from 'feather-icons'
|
||||||
|
|
||||||
export default function Icon(name, fallback) {
|
export default function Icon(name, fallback) {
|
||||||
const ico = icons[name.toLowerCase()] || icons[fallback.toLowerCase()]
|
const icon =
|
||||||
return ico.toSvg({ width: 16, height: 16 })
|
feather.icons[name.toLowerCase()] || feather.icons[fallback.toLowerCase()]
|
||||||
|
return icon.toSvg({ width: 16, height: 16 })
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue