import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type HollowTriangleOptions = Record; /** * △ */ export const HollowTriangle: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'triangle', ...options, }, context, ); }; HollowTriangle.props = { defaultMarker: 'hollowTriangle', ...Color.props, };