You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
329 B
TypeScript
15 lines
329 B
TypeScript
![]()
3 years ago
|
import { EConfigItemPropsType, EDoneJsonType, IConfigItem } from '../../../types';
|
||
![]()
3 years ago
|
|
||
![]()
3 years ago
|
export const alternator_svg_file: IConfigItem = {
|
||
![]()
3 years ago
|
name: 'alternator',
|
||
|
title: '发电机',
|
||
![]()
3 years ago
|
type: EDoneJsonType.File,
|
||
![]()
3 years ago
|
props: {
|
||
|
fill: {
|
||
|
title: '填充色',
|
||
|
type: EConfigItemPropsType.Color,
|
||
|
val: '#ff0000'
|
||
|
}
|
||
|
}
|
||
|
};
|