import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowDiamondOptions = Record; /** * ◇ */ export const HollowDiamond: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'diamond', ...options, }, context, ); }; HollowDiamond.props = { defaultMarker: 'hollowDiamond', ...Color.props, };