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