import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowOptions = Record; /** * Render rect in different coordinate and using color channel for stroke attribute. */ export const Hollow: SC = (options, context) => { return Color({ colorAttribute: 'stroke', ...options }, context); }; Hollow.props = { ...Color.props, defaultMarker: 'hollowSquare', };