import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type DiamondOptions = Record; /** * ◆ */ export const Diamond: SC = (options, context) => { return Color( { colorAttribute: 'fill', symbol: 'diamond', ...options }, context, ); }; Diamond.props = { defaultMarker: 'diamond', ...Color.props, };