Back to Remix

Minor.05 Remove Legacy Css Prop

packages/component/.changes/minor.05-remove-legacy-css-prop.md

2.11.1288 B
Original Source

BREAKING CHANGE: remove legacy host-element css prop runtime support in @remix-run/component.

Use the css(...) mixin instead:

  • Old: <div css={{ color: 'red' }} />
  • New: <div mix={[css({ color: 'red' })]} />

This aligns styling behavior with the new mixin composition model.