poly_styled_jsx 0.6.1

AST transforms 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>