import useConfigInject from '../_util/hooks/useConfigInject'; const Simple = () => { const { getPrefixCls } = useConfigInject('empty', {}); const prefixCls = getPrefixCls('empty-img-simple'); return ( ); }; Simple.PRESENTED_IMAGE_SIMPLE = true; export default Simple;