import loadable from '@loadable/component'; import React from 'react'; import type { AntdIconProps } from '@ant-design/icons/lib/components/AntdIcon'; export default { title: 'icons/loadable', }; const LoadIcon = loadable((props) => import( /* webpackInclude: /\.js$/ */ `@ant-design/icons/${props.type}` ), ); export const Demo = () => { return ; };