styled_jsx 0.112.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 {
        border-image-source: url("https://example.com/image.png"); //
      }
    `}</style>
  );
}