// Auto-generated file - do not edit manually // Generated on 2025-12-19T15:43:10.786Z export interface IconDefinition { viewBox: string content: string } export interface IconRegistry { [namespace: string]: { [iconName: string]: IconDefinition } } export const iconRegistry: IconRegistry = { "benefits": { "cart": { "viewBox": "0 0 109 75", "content": "" }, "casket": { "viewBox": "0 0 103 81", "content": "\n\n\n\n\n" }, "heart": { "viewBox": "0 0 84 61", "content": "" }, "truck": { "viewBox": "0 0 117 64", "content": "\n\n\n" } }, "ui": { "casket-closed": { "viewBox": "0 0 79 28", "content": "\n" }, "casket-open": { "viewBox": "0 0 79 47", "content": "" }, "casket": { "viewBox": "0 0 28 57", "content": "" }, "family": { "viewBox": "0 0 52 48", "content": "\n\n\n\n\n\n\n\n\n" }, "fire": { "viewBox": "0 0 63 56", "content": "" }, "question-mark": { "viewBox": "0 0 27 52", "content": "" }, "tombstone": { "viewBox": "0 0 51 57", "content": "" }, "urn": { "viewBox": "0 0 41 57", "content": "" } } } as const // Type-safe icon names export type IconName = 'benefits/cart' | 'benefits/casket' | 'benefits/heart' | 'benefits/truck' | 'ui/casket' | 'ui/casket-closed' | 'ui/casket-open' | 'ui/family' | 'ui/fire' | 'ui/question-mark' | 'ui/tombstone' | 'ui/urn'