data.tsx 598 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import React from 'react';
  2. import Icon from '../Icon';
  3. export const shapeOptions = [
  4. {
  5. key: 'square',
  6. content: <Icon glyph="square" />,
  7. child: '',
  8. },
  9. {
  10. key: 'circle',
  11. content: <Icon glyph="circle" />,
  12. child: '',
  13. },
  14. {
  15. key: 'line',
  16. content: <Icon glyph="line" />,
  17. child: '',
  18. },
  19. {
  20. key: 'arrow',
  21. content: <Icon glyph="arrow" />,
  22. child: '',
  23. },
  24. ];
  25. export const typeOptions = [
  26. {
  27. key: 'fill',
  28. content: <Icon glyph="fill" />,
  29. child: '',
  30. },
  31. {
  32. key: 'border',
  33. content: <Icon glyph="border" />,
  34. child: '',
  35. },
  36. ];