import React, { Suspense } from "react"; const Icon = ({ name }) => { const Svg = React.lazy(() => import(`./icons/${name}.svg`)); return ( < ...
確定! 回上一頁