import React from 'react'; /* { TODO } -> Update this component to be more dynamic */ /* const beginningLabel = { x: -1.8, y: 0 }; const endLabel = { x: 1.1, y: 0 }; */ /* const textPositions = { 2: { 0: beginningLabel, 1: endLabel }, 3: { 0: beginningLabel, 1: { x: -0.25, y: -1.05 }, 2: endLabel, }, 4: { 0: beginningLabel, 1: { x: -0.75, y: -1.05 }, 2: { x: 0.25, y: -1.05 }, 3: endLabel, }, 5: { 0: beginningLabel, 1: { x: -1.25, y: -0.9 }, 2: { x: -0.25, y: -1.05 }, 3: { x: 0.6, y: -0.9 }, 4: endLabel, }, }; */ export const Label = (/* { fill, label } */) => ( {'label'} ); // Label.defaultProps = { // label: 'Dummy Text', // }; export default Label;