styled_jsx 13.0.0

AST transforms visitor for styled-jsx
Documentation
const Test = () => (
  <div>
    <style jsx global>{`
      body {
        color: red;
      }

      :hover {
        color: red;
        display: flex;
        animation: foo 1s ease-out;
      }

      div a {
        display: none;
      }

      [data-test] > div {
        color: red;
      }
    `}</style>
  </div>
);

const Test2 = () => (
  <style global jsx>
    {"p { color: red }"}
  </style>
);