linaria icon indicating copy to clipboard operation
linaria copied to clipboard

JSX css="" syntax.

Open 0x241F31 opened this issue 3 years ago • 0 comments

Describe the enhancement

I would like to write code like this:

<section
   css='
      color: red;
      font-size: medium;
      margin: 12px;
      box-sizing: border-box;
   '
/>

instead of:

<div
   class={css`
      color: red;
      font-size: medium;
      margin: 12px;
      box-sizing: border-box;
   `}
/>

Motivation

This will improve DX.

Possible implementations

Dunno

0x241F31 avatar Nov 22 '22 20:11 0x241F31