styled_jsx 13.0.0

AST transforms visitor for styled-jsx
Documentation
1
2
3
4
5
6
7
8
9
10
/* eslint-disable-next-line import/no-default-export -- TODO: Fix ESLint Error (#13355) */
export default function ReactCropStyle() {
  return (
    <style global jsx>{`
      .ReactCrop__crop-selection {
        background: red; // Foo bar
      }
    `}</style>
  );
}