export type IconMap = Record string> const icons: IconMap = { addCircle: () => ` `, alert: () => ` `, bigAlert: () => ` `, arrowDown: () => ` `, arrowLeft: () => ` `, arrowRight: () => ` `, arrowUp: () => ` `, bigSuccess: () => ` `, clock: () => ` `, complaint: () => ` `, last: () => ` `, first: () => ` `, backspace: () => ` `, bigCamera: () => ` `, bigClock: () => ` `, bigPhone: () => ` `, bigSearch: () => ` `, search: () => ` `, sync: () => ` `, bigInfo: () => ` `, calendar: () => ` `, calendarRemove: () => ` `, calendarSet: () => ` `, camera: () => ` `, check: () => ` `, checkmark: () => ` `, clinic: () => ` `, copy: () => ` `, coworker: () => ` `, coworkers: () => ` `, counselingPerson: () => ` `, counseling: () => ` `, cross: () => ` `, delete: () => ` `, download: () => ` `, edit: () => ` `, email: () => ` `, expand: () => ` `, external: () => ` `, flag: () => ` `, fullscreen: () => ` `, happy: () => ` `, information: () => ` `, invoice: () => ` `, logout: () => ` `, login: () => ` `, more: () => ` `, notificationOn: () => ` `, notificationOff: () => ` `, phone: () => ` `, pin: () => ` `, power: () => ` `, question: () => ` `, settings: () => ` `, service: () => ` `, sort: () => ` `, ascending: () => ` `, descending: () => ` `, switchUser: () => ` `, subtractCircle: () => ` `, success: () => ` `, upload: () => ` `, viewOff: () => ` `, viewOn: () => ` `, warning: () => ` `, hamburgerClose: () => ` `, hamburgerOpen: () => ` `, dial: () => ` `, undo: () => ` `, /** REMOVE BELOW ICONS... */ test: () => ` `, down: () => ` `, left: () => ` `, right: () => ` `, filter: () => ` `, chain: () => ` `, report: () => ` `, export: () => ` `, import: () => ` `, } export type IconName = keyof IconMap // resolves to `string` export default icons