--- import Icon from "astro-iconify"; import SettingsPopover from "./SettingsPopover.astro"; export interface Props { url: string | null; } const placeholder = "Type the article URL here"; const { url } = Astro.props; ---