diamond.js 287 B

123456789
  1. import { Color } from './color';
  2. /**
  3. * ◆
  4. */
  5. export const Diamond = (options) => {
  6. return Color(Object.assign({ colorAttribute: 'fill', symbol: 'diamond' }, options));
  7. };
  8. Diamond.props = Object.assign({ defaultMarker: 'diamond' }, Color.props);
  9. //# sourceMappingURL=diamond.js.map