import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type SquareOptions = Record; /** * ■ */ export const Square: SC = (options, context) => { return Color( { colorAttribute: 'fill', symbol: 'square', ...options }, context, ); }; Square.props = { defaultMarker: 'square', ...Color.props, };