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