import { ShapeComponent as SC } from '../../runtime'; import { BaseCircle, Circle } from './circle'; export type HollowCircleOptions = Record; /** * ○ */ export const HollowCircle: SC = (options, context) => { return BaseCircle({ colorAttribute: 'stroke', ...options }, context); }; HollowCircle.props = { defaultMarker: 'hollowPoint', ...Circle.props, };