import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowBowtieOptions = Record; /** * ▷◁ */ export const HollowBowtie: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'bowtie', ...options }, context, ); }; HollowBowtie.props = { defaultMarker: 'hollowBowtie', ...Color.props, };