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.
20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
![]()
3 years ago
|
import { EConfigItemPropsType, EDoneJsonType, IConfigItem } from '../../../types';
|
||
|
|
||
|
export const reservoir_svg_file: IConfigItem = {
|
||
|
name: 'reservoir',
|
||
|
title: '蓄水池',
|
||
|
type: EDoneJsonType.File,
|
||
|
config: {
|
||
|
can_zoom: true,
|
||
|
have_anchor: true,
|
||
|
actual_rect: true
|
||
|
},
|
||
|
props: {
|
||
|
fill: {
|
||
|
title: '水流颜色',
|
||
|
type: EConfigItemPropsType.Color,
|
||
|
val: '#37cfe7'
|
||
|
}
|
||
|
}
|
||
|
};
|