import { Space } from 'antd'
<Space direction="horizontal" align="center" style={{width: '100%'}}>
<span>Hello</span>
</Space>
Because Antd uses flex for Space div, you need to use justifyContent. Try this
<Space direction="horizontal" style={{width: '100%', justifyContent: 'center'}}>