Documentation says that the component provides a prop for styling using a function. Like this below:
function: `(event, column) => {}` The function should return a style object.
But the event is not passed in the function (see
|
} else if (_.isFunction(this.props.style)) { |
|
style = this.props.style(column); |
)
It is an easy fix, so I'm submitting a PR.