--- 'astro': minor --- Added `Polymorphic` type helper to `astro/types` to easily create polymorphic components: ```astro --- import { HTMLTag, Polymorphic } from 'astro/types'; type Props = Polymorphic<{ as: Tag }>; const { as: Tag, ...props } = Astro.props; --- ```