You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/icon/demo/two-tone.md

643 B

#### 多色图标 可以通过设置 `theme` 属性为 `twoTone` 来渲染双色图标,并且可以设置主题色。 #### Two-tone icon and colorful icon Specific them property `theme` to `twoTone` to render two-tone icons. You can also set the primary color.
<template>
  <div class="icons-list">
    <a-icon type="smile" theme="twoTone" />
    <a-icon type="heart" theme="twoTone" twoToneColor="#eb2f96" />
    <a-icon type="check-circle" theme="twoTone" twoToneColor="#52c41a" />
  </div>
</template>
<style scoped>
  .icons-list >>> .anticon {
    margin-right: 6px;
    font-size: 24px;
  }
</style>