Adam Argyle
                                            Adam Argyle
                                        
                                    `import sizes from "open-props/src/props.sizes.js"` does that resolve the issue? this way you're referencing a file directly and not leaning on the [exports map in package.json](https://github.com/argyleink/open-props/blob/main/package.json#L39). not sure why declaring the...
glad you're not blocked, but still a bit disconcerting. are you able to import other props, or all props kinda give you the same issues with missing exports?
wanna help Open Props ship typings for ts importers?
awesome start @hchiam! ❤️ after studying your pen, i forked it and jotted down some code thoughts: https://codepen.io/argyleink/pen/qBVGOgJ i think aligning to the button is best, but there's aspects of...
also worth checking out this PR https://github.com/argyleink/open-props/pull/225 which is seeking to solve the same issue and has an alternative solution that resolves some of my comments above.
> A thing to consider is that JS props can't end with the `@` symbol, so the `microbundle` approach in PR #225 will need to be modified to auto-generate `.animationFadeInAt`...
nice! these are pretty much the vars that need documentation https://github.com/argyleink/open-props/blob/main/src/extra/theme.dark.css and their usage https://github.com/argyleink/open-props/blob/main/src/extra/theme.css. **The goal is to empower folks to use these props, know why to use them,...
included some docs and stuff in the normalize demo codepen https://codepen.io/argyleink/pen/KKvRORE
more or less replicate it yeah 🙂
**browser support:** Short quick answer, no IE because it's [custom properties](https://caniuse.com/css-variables). More complex answer is [caniuse :where()](https://caniuse.com/mdn-css_selectors_where), which wraps the prop definitions, which is a more modern browser feature. if...