ant-design/components/steps/demo/small-size.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

627 B

迷你版

  • order: 1

迷你版的步骤条,通过设置 <Steps size="small"> 启用.


import { Steps } from 'antd';
const Step = Steps.Step;
const container = document.getElementById('components-steps-demo-small-size');

const steps = [{
  status: 'finish',
  title: '已完成'
}, {
  status: 'process',
  title: '进行中'
}, {
  status: 'wait',
  title: '待运行'
}, {
  status: 'wait',
  title: '待运行'
}].map(function(s, i) {
  return (
    <Step key={i} title={s.title} description={s.description} />
  );
});

ReactDOM.render(<Steps size="small" current={1}>{steps}</Steps>, container);