import * as React from 'react'; import { PropsWithChildren } from 'react'; import Image, { ImageProps } from '../../image'; import { IconUploadError } from "@douyinfe/semi-icons"; import { omit } from 'lodash'; import { cssClasses } from '@douyinfe/semi-foundation/markdownRender/constants'; const img = (props: PropsWithChildren)=>{ return
} width={"100%"} {...omit(props, 'children')}/>
{props.alt}
; }; export default img;