/** Inline-SVG-Icons (ersetzen die Material-Symbols-Font des Design-Exports). */ export type SeoIconName = | 'check_circle' | 'calendar' | 'healing' | 'sun' | 'psychology' | 'menu' | 'close' const paths: Record = { check_circle: ( <> ), calendar: ( <> ), healing: ( <> ), sun: ( <> ), psychology: ( <> ), menu: , close: , } interface SeoIconProps { name: SeoIconName className?: string } export default function SeoIcon({ name, className = 'w-6 h-6' }: SeoIconProps) { return ( ) }