// shapes.js const shapes = [ { id: 'square', name: '正方形', svg: ` `, }, { id: 'diamond', name: '菱形', svg: ` `, }, { id: 'cylinder', name: '圆柱体', svg: ` `, }, { id: 'cube', name: '立方体', svg: ` `, }, { id: 'circle', name: '圆形', svg: ` `, }, { id: 'sphere', name: '球体', svg: ` `, }, ]; // 颜色选项 const colors = [ { name: '红色', value: '#ff5252' }, { name: '蓝色', value: '#448aff' }, { name: '绿色', value: '#69f0ae' }, { name: '黄色', value: '#ffd740' }, { name: '紫色', value: '#e040fb' }, ]; export { shapes, colors };