ant-design/components/icon/twoTonePrimaryColor.ts

13 lines
300 B
TypeScript
Raw Normal View History

2018-09-01 19:44:21 +08:00
import ReactIcon from '@ant-design/icons-react';
2018-08-31 10:53:03 +08:00
2018-09-01 19:44:21 +08:00
export function setTwoToneColor(primaryColor: string): void {
return ReactIcon.setTwoToneColors({
primaryColor,
});
2018-08-31 10:53:03 +08:00
}
2018-09-01 19:44:21 +08:00
export function getTwoToneColor(): string {
const colors = ReactIcon.getTwoToneColors();
return colors.primaryColor;
2018-08-31 10:53:03 +08:00
}