import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type BowtieOptions = Record; /** * ▶◀ */ export const Bowtie: SC = (options, context) => { return Color( { colorAttribute: 'fill', symbol: 'bowtie', ...options }, context, ); }; Bowtie.props = { defaultMarker: 'bowtie', ...Color.props, };