| 1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Rect = void 0;
- const color_1 = require("./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.
- */
- const Rect = (options) => {
- return (0, color_1.Color)(Object.assign({ colorAttribute: 'fill' }, options));
- };
- exports.Rect = Rect;
- exports.Rect.props = Object.assign(Object.assign({}, color_1.Color.props), { defaultMarker: 'square' });
- //# sourceMappingURL=rect.js.map
|