@ant-design/icons#DingdingOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#DingdingOutlined. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.jsx    From prometheusPro with MIT License 6 votes vote down vote up
desc1 = (
  <div className={styles.title}>
    <div
      style={{
        margin: '8px 0 4px',
      }}
    >
      曲丽丽
      <DingdingOutlined
        style={{
          marginLeft: 8,
          color: '#00A0E9',
        }}
      />
    </div>
    <div>2016-12-12 12:32</div>
  </div>
)
Example #2
Source File: index.jsx    From prometheusPro with MIT License 6 votes vote down vote up
desc2 = (
  <div
    style={{
      fontSize: 12,
    }}
    className={styles.title}
  >
    <div
      style={{
        margin: '8px 0 4px',
      }}
    >
      周毛毛
      <a href="">
        <DingdingOutlined
          style={{
            color: '#00A0E9',
            marginLeft: 8,
          }}
        />
        催一下
      </a>
    </div>
  </div>
)