react+antd 表格中图片间距怎么调

react+antd的项目中,表格中图片间距怎么调

img

<Table.Column title='协议扫描件' align='center' dataIndex='slacProtocolPic' render={text => {
                                    if (typeof text === 'string') {
                                        const res = text.split(';');
                                        console.log(res)
                                        if (Array.isArray(res)) {
                                            if (status === 'see') {
                                                return res.map((item) => {
                                                    return (
                                                        <Image key={item} src={imageURL + item} height={100} marginRight={8} padding-left={8} alt='暂无图片' />
                                                    )
                                                })
                                            } else {
                                                return `${res.length}张图片`

                                            }
                                        }
                                    }
                                }} />

Image 内联 style={{marginRight:8}}