mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 11:38:36 +08:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
import VueIcon from '@ant-design/icons-vue'
|
|
|
|
export function setTwoToneColor (primaryColor) {
|
|
return VueIcon.setTwoToneColors({
|
|
primaryColor,
|
|
})
|
|
}
|
|
|
|
export function getTwoToneColor () {
|
|
const colors = VueIcon.getTwoToneColors()
|
|
return colors.primaryColor
|
|
}
|