nickmaltsev

Results 3 comments of nickmaltsev

Thanks for your suggestion, it's definitly a good one. 👍 I also think, maybe we can implement general `extend api` on each component, which make it easy to style inner...

@RIP21 what about this? ``` const extendStyles = ({ input, label, errorMessage }) => ({ input: input.extend` color: props => props.colorScheme.color `, label: label.addClassName('additionalClassName'), errorMessage: errorMessage.css(compiledCss), }) ```

And in addition to `extend` prop which is merge provided styles, classes with underlying, we can add `override` prop, to completely override styles of some elements