[improvement] Icon: update shop icons (#3044)

This commit is contained in:
neverland
2019-03-22 20:11:36 +08:00
committed by GitHub
parent 784b279738
commit 3e1b048d88
4 changed files with 62 additions and 62 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import { mount } from '../../utils/functional';
export type OverlayConfig = {
zIndex?: number;
className?: string;
customStyle?: object[] | object;
customStyle?: string | object[] | object;
};
const defaultConfig: OverlayConfig = {
+1 -1
View File
@@ -55,7 +55,7 @@ export type TsxBaseProps<Slots> = {
// hack for jsx prop spread
props: any;
class: any;
style: object[] | object;
style: string | object[] | object;
scopedSlots: Slots;
};