Blame view

src/Button/Button.html 287 Bytes
061629e7   Imshann   add
1
  <button className={state.className}>
3a3ecabe   Imshann   init
2
3
      {loading && <span className="ant-btn-loading-icon">
          <span className="anticon anticon-loading anticon-spin">
81f8a467   Imshann   调整组件前缀
4
              <antd-icon type="LoadingOutlined"></antd-icon>
3a3ecabe   Imshann   init
5
6
7
8
              </span>
      </span>}
      <span>{children}</span>
  </button>