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