json-theme-even-fork/components/icon.js
2023-01-30 02:48:52 +01:00

7 lines
207 B
JavaScript

import { icons } from 'feather-icons'
export default function Icon(name, fallback) {
const ico = icons[name.toLowerCase()] || icons[fallback.toLowerCase()]
return ico.toSvg({ width: 16, height: 16 })
}