| 12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Hollow = void 0;
- const color_1 = require("./color");
- /**
- * Render rect in different coordinate and using color channel for stroke attribute.
- */
- const Hollow = (options) => {
- return (0, color_1.Color)(Object.assign({ colorAttribute: 'stroke' }, options));
- };
- exports.Hollow = Hollow;
- exports.Hollow.props = Object.assign(Object.assign({}, color_1.Color.props), { defaultMarker: 'hollowSquare' });
- //# sourceMappingURL=hollow.js.map
|