--- order: 6 title: zh-CN: 自定义文字格式 en-US: Custom text format --- ## zh-CN `format` 属性指定格式。 ## en-US You can set a custom text by setting the `format` prop. ```tsx import { Progress } from 'antd'; import React from 'react'; const App: React.FC = () => ( <> `${percent} Days`} /> 'Done'} /> ); export default App; ```