123456789 |
- import { Color } from './color';
- /**
- * ◆
- */
- export const Diamond = (options) => {
- return Color(Object.assign({ colorAttribute: 'fill', symbol: 'diamond' }, options));
- };
- Diamond.props = Object.assign({ defaultMarker: 'diamond' }, Color.props);
- //# sourceMappingURL=diamond.js.map
|