import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowHexagonOptions = Record; /** * ⬡ */ export const HollowHexagon: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'hexagon', ...options, }, context, ); }; HollowHexagon.props = { defaultMarker: 'hollowHexagon', ...Color.props, };