1234567891011121314151617181920212223242526272829303132333435363738 |
- import React from 'react';
- import Icon from '../Icon';
- export const shapeOptions = [
- {
- key: 'square',
- content: <Icon glyph="square" />,
- child: '',
- },
- {
- key: 'circle',
- content: <Icon glyph="circle" />,
- child: '',
- },
- {
- key: 'line',
- content: <Icon glyph="line" />,
- child: '',
- },
- {
- key: 'arrow',
- content: <Icon glyph="arrow" />,
- child: '',
- },
- ];
- export const typeOptions = [
- {
- key: 'fill',
- content: <Icon glyph="fill" />,
- child: '',
- },
- {
- key: 'border',
- content: <Icon glyph="border" />,
- child: '',
- },
- ];
|