import * as React from 'react'; import { ConfigContext } from '../config-provider'; const Simple = () => { const { getPrefixCls } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('empty-img-simple'); return ( ); }; export default Simple;