Skip to content

Commit

Permalink
fix: Sprite component compat with Astro v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed Apr 5, 2022
1 parent 60fb5d0 commit 147001e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/two-mugs-invent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"astro-icon": patch
---

Fix `Sprite` component for Astro v1.0.0
8 changes: 4 additions & 4 deletions packages/core/lib/SpriteProvider.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import Spritesheet from './Spritesheet.astro'
const content = await Astro.slots.render('default');
---

<Fragment>
<slot />
<Spritesheet />
</Fragment>
<Fragment set:html={content} />
<Spritesheet />

2 comments on commit 147001e

@vercel
Copy link

@vercel vercel bot commented on 147001e Apr 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

api-astroicon – ./packages/service

api-astroicon-git-main-nmoo.vercel.app
api.astroicon.dev
api-astroicon-nmoo.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 147001e Apr 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

astroicon – ./packages/www/

astroicon-git-main-nmoo.vercel.app
www.astroicon.dev
astroicon.dev
astroicon-nmoo.vercel.app
astro-icon-www.vercel.app

Please sign in to comment.