-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Labels
- P3: minor bugAn edge case that only affects very specific usage (priority)An edge case that only affects very specific usage (priority)needs triageIssue needs to be triagedIssue needs to be triaged
Description
Describe the Bug
I'm using Panda Css, but when im declare like this
---
import { css } from '.../styled/css'
---
<main class={css({})}> // <- don't have space the types is working
</main>---
import { css } from '.../styled/css'
---
<main class={css({ })}> // <- have space the types have gone, and showing the HTMLAttribute instead of types from panda
</main>---
import { css } from '.../styled/css'
---
<main class={css({
})}> // <- have entered the types has gone, and showing the HTMLAttribute instead of types from panda too
</main>---
import { css } from '.../styled/css'
---
<main class={css({color:'red.100', })}> // <- have space after coma the types have gone, and showing the HTMLAttribute instead of types from panda too
</main>bandicam.2023-09-11.16-55-49-630.mp4
Steps to Reproduce
npm init astrousing templatenpm installpandacss- Follow the instructions in the documentation
- implement on .astro extention
Metadata
Metadata
Assignees
Labels
- P3: minor bugAn edge case that only affects very specific usage (priority)An edge case that only affects very specific usage (priority)needs triageIssue needs to be triagedIssue needs to be triaged



