--- import Serialize from "@ayco/astro-resume"; import Icon from "astro-iconify"; import { featureFlags } from "../utils/feature-flags"; export interface Props { toggle: string; } const enabledSettings = Object.keys(featureFlags).filter( (key) => featureFlags[key] ); const { toggle } = Astro.props; ---