import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type TriangleDownOptions = Record; /** * ▼ */ export const TriangleDown: SC = (options, context) => { return Color( { colorAttribute: 'fill', symbol: 'triangle-down', ...options, }, context, ); }; TriangleDown.props = { defaultMarker: 'triangleDown', ...Color.props, };