# 按钮形状 - order: 1 通过设置 `shape` 为 `circle` `circle-outline`,可以把按钮形状设为圆形,并且 `circle-outline` 在 hover 时会有动画效果。 --- ````jsx var Button = antd.Button; var Icon = antd.Icon; ReactDOM.render(

, document.getElementById('components-button-demo-shape')); ````