hollowDiamond.js 313 B

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