Closed
Description
Describe the feature request
I am migrating an old CSS Modules-based project to use stylex. So I only have normal CSS instead of style objects. Here is what I am proposing:
import * as stylex from '@stylexjs/stylex';
const styles = stylex.create({
// `css` is used by some IDE plugin to highlight tagged template,
// we can re-use this name to improve DX.
styleA: stylex.css`
position: absolute;
z-index: 3;
width: 175px;
opacity: 1;
`
});