cschroeter / park-ui

Beautifully designed components built with Ark UI and Panda CSS that work with a variety of JS frameworks.
https://park-ui.com
MIT License
1.74k stars 75 forks source link

Skeleton does not render if there is no text inside it #437

Open Mottoweb opened 1 month ago

Mottoweb commented 1 month ago

i.e.

<Skeleton isLoaded={!!data?.d?.bp}>
  <Text>{data?.d?.bp}</Text>
</Skeleton>

does not render the sekeleton while there is no data available

but

<Skeleton isLoaded={!!data?.d?.bp}>
  <Text>{data?.d?.bp || 'no data'}</Text>
</Skeleton>

renders as expected