--- import type { AstroBuiltinProps } from 'astro' import type { AstroComponentFactory } from 'astro/runtime/server/index.js' type Props = { large?: boolean style?: string } const { large, ...props } = Astro.props ---