summaryrefslogtreecommitdiff
path: root/.changeset/two-carrots-smile.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-05-18 09:31:59 -0700
committerGravatar GitHub <noreply@github.com> 2023-05-18 12:31:59 -0400
commit31cbf4357e866abab62bb4ccf949f5a59aec06ac (patch)
treefdf22a00c332e3082b3d369c3eda497892351f0d /.changeset/two-carrots-smile.md
parentdad105a91e2d9b59cfd6aba7703207ba08841c10 (diff)
downloadastro@2.5.0.tar.gz
astro@2.5.0.tar.zst
astro@2.5.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/two-carrots-smile.md')
-rw-r--r--.changeset/two-carrots-smile.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/.changeset/two-carrots-smile.md b/.changeset/two-carrots-smile.md
deleted file mode 100644
index d5b046b0b..000000000
--- a/.changeset/two-carrots-smile.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-'astro': minor
----
-
-Added `Polymorphic` type helper to `astro/types` to easily create polymorphic components:
-
-```astro
----
-import { HTMLTag, Polymorphic } from 'astro/types';
-
-type Props<Tag extends HTMLTag> = Polymorphic<{ as: Tag }>;
-
-const { as: Tag, ...props } = Astro.props;
----
-
-<Tag {...props} />
-```