| 12345678910 |
- import { Color } from './color';
- /**
- * Render rect in different coordinate and using color channel for stroke and fill attribute.
- * The stroke attribute is valid with specified lineWidth attribute which defaults to zero.
- */
- export const Rect = (options) => {
- return Color(Object.assign({ colorAttribute: 'fill' }, options));
- };
- Rect.props = Object.assign(Object.assign({}, Color.props), { defaultMarker: 'square' });
- //# sourceMappingURL=rect.js.map
|