I have been passing additional properties to the `lane` property like so on v2.1 ```js { id: "EXPENSES", title: "Expenses", current: "70", // custom property target: "100", // custom property cards: [] } ``` On my `CustomLaneHeader` I can retrieve both `current` and `target` properties on v2.1 but not on v2.2 after I switched from (v2.1) , custom properties can be retrieved via props ```jsx customLaneHeader={<CustomLaneHeader />} ``` to (v2.2) custom properties cannot be retrieved via props ```jsx components={{LaneHeader: CustomLaneHeader}} ``` How do I get the custom properties on v2.2?