| 25 | import { MARKER_FEATURED_ICON_COUNT } from "@/features/markers/infrastructure/constants"; |
| 26 | |
| 27 | function createSvgIcon(id: string, label: string, component: IconType) { |
| 28 | return { |
| 29 | id, |
| 30 | label, |
| 31 | source: "predefined", |
| 32 | kind: "svg", |
| 33 | component, |
| 34 | svgMarkup: renderToStaticMarkup( |
| 35 | createElement(component, { |
| 36 | size: 24, |
| 37 | color: "currentColor", |
| 38 | "aria-hidden": true, |
| 39 | }), |
| 40 | ), |
| 41 | } satisfies MarkerIconDefinition; |
| 42 | } |
| 43 | |
| 44 | function createImageIcon(id: string, label: string, sourcePath: string) { |
| 45 | return { |