import type { ReactNode } from 'react' /** Every icon on the page is a 24×24 outline drawn in `currentColor`. */ function Icon({ children }: { children: ReactNode }) { return ( ) } export function ArrowRightIcon() { return ( ) } export function PhoneIcon() { return ( ) } export function ChevronsIcon() { return ( ) } /** Icons of the guest portraits, keyed by `guestPortraits[].icon`. */ export const guestIcons = { road: ( ), active: ( ), wellness: ( ), business: ( ), } /** Icons of the "почему Экзо" list, keyed by `whyItems[].icon`. */ export const whyIcons = { tech: ( ), factory: ( ), launch: ( ), }