mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
13 lines
270 B
JavaScript
13 lines
270 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;
|
|
}
|