18 lines
576 B
TypeScript
18 lines
576 B
TypeScript
import { PublicConfigClass } from '@/packages/public'
|
|
import { chartInitConfig } from '@/settings/designSetting'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { Icons02Config } from './index'
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
|
|
export const option = {
|
|
boxId: '',
|
|
colors: [],
|
|
}
|
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
public key = Icons02Config.key
|
|
public attr = { ...chartInitConfig, w: 51, h: 51, zIndex: 1 }
|
|
public chartConfig = cloneDeep(Icons02Config)
|
|
public option = cloneDeep(option)
|
|
}
|