UNPKG

react-native-chart-kit

Version:

Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.

11 lines (10 loc) 266 B
export const createSvgSymbolDiamondPath = ({ size, x, y }) => { const radius = size / 2; return [ `M ${x} ${y - radius}`, `L ${x + radius} ${y}`, `L ${x} ${y + radius}`, `L ${x - radius} ${y}`, "Z" ].join(" "); };