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