\n\n\n\n","export default \"__VITE_ASSET__CMaiXz4u__\"","\n \n\n\n\n","\n \n\n","/**\n * Returns a new object or string depending on the provided input with the same keys as the input object.\n * However, with value(s) replaced according to the replacement object\n * if replacement value is not provided, the original value is returned\n * @category Utils\n * @param input - The input object or string to be processed.\n * @param replacements - The replacement object that maps values to their replacements.\n * @returns The processed object or string with values replaced according to the replacement object.\n * @example\n * replaceValues(\n * { sm: 'tertiary-inverse', md: 'tertiary' },\n * { 'tertiary-inverse': 'secondary-inverse', 'tertiary': 'secondary' }\n * )\n * returns {sm: 'secondary-inverse', md: 'secondary'}\n * replaceValues('tertiary', { 'tertiary': 'secondary'})\n * returns 'secondary'\n */\nexport const replaceValues\n = (input: string | T, replacements: S): string | T =>\n typeof input === 'string'\n ? (replacements[input] || input)\n : Object.fromEntries(Object.entries(input)?.map(([key, val]) => [key, replacements[val] || val]))\n","\n \n \n \n \n \n \n \n \n \n\n\n\n","\n