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.
9 lines
308 B
TypeScript
9 lines
308 B
TypeScript
import { IConfigComponentGroup } from '../../types';
|
|
import { custom_svg_text } from './custom-svg-text';
|
|
import { switch_demo } from './switch-demo';
|
|
export const custom_svg_group: IConfigComponentGroup = {
|
|
groupType: 'custom_svg_group',
|
|
title: '自定义svg',
|
|
list: [custom_svg_text, switch_demo]
|
|
};
|