Cesar Santos

Results 10 comments of Cesar Santos

``` const Base = styled('div', { variants: { color: { error: { color: 'red' }, success: { color: 'blue' } } }, defaultVariants: { color: 'error' } }) ``` I...

@jonathantneal - My TS knowledge is pretty limited (comparing to the massive generic types stitches has), I was trying to follow along the same approach `styled()` or `css()` functions have...

on that note, kinda related, `styled` and `css` also goes crazy when one of their `...args` don't match the types: ``` void styled('div', { color: 'red' }, new Date()); void...

@hadihallak any chance we can include this in next [Milestone](https://github.com/stitchesjs/stitches/milestone/1) ?

stitches folks, are there any updates on this? maintainers are so quiet lately. Started to worry about this lib not longer being maintained? 😟

This seems to be the same issue I'm experiencing on #4879 and #4878 :/

I have a scenario somewhat related: ``` const Box = styled('div', { color: 'red' }); type MyBoxProps = { // --- how do I get the `as` prop type here?...

@quantizor this started breaking on `7.7.4` here a codesandbox for you to reproduce: https://codesandbox.io/p/sandbox/3xx6pt (version: 7.7.12) ``` "expected columns: 'user_id', 'user_first_name', 'user_last_name'." ``` ### OUTPUT 🛑 ### EXPECTED OUTPUT 👇...

thanks for the quick response Evan. Sorry to double down on the issue, but look at the following examples here in the Github comment section: notice it understands when the...

Also, I'm unsure if the issues reported by @desiprisg and @boblete are related because their examples are no easy to replicate; I just posted mine here because it was "issue...