import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowSquareOptions = Record; /** * □ */ export const HollowSquare: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'square', ...options }, context, ); }; HollowSquare.props = { defaultMarker: 'hollowSquare', ...Color.props, };