ant-design-vue/components/icon/twoTonePrimaryColor.js

13 lines
270 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import VueIcon from '@ant-design/icons-vue';
2018-11-17 07:57:38 +00:00
2019-01-12 03:33:27 +00:00
export function setTwoToneColor(primaryColor) {
2018-11-17 07:57:38 +00:00
return VueIcon.setTwoToneColors({
primaryColor,
2019-01-12 03:33:27 +00:00
});
2018-11-17 07:57:38 +00:00
}
2019-01-12 03:33:27 +00:00
export function getTwoToneColor() {
const colors = VueIcon.getTwoToneColors();
return colors.primaryColor;
2018-11-17 07:57:38 +00:00
}