import compactIconsClassic from '../icons/compact/index'; import icons from '../icons/index'; type IconName = keyof typeof icons | keyof typeof compactIconsClassic; const swapOnRtlIconNames: ReadonlyArray = Object.freeze(['list-numbered']); const flipOnRtlIconNames: ReadonlyArray = Object.freeze([ 'ads-stats', 'ads-overview', 'arrow-back', 'arrow-circle-forward', 'arrow-end', 'arrow-forward', 'arrow-start', 'arrow-up-right', 'compose', 'chevron-left-circle', 'chevron-right-circle', 'directional-arrow-left', 'directional-arrow-right', 'flip-vertical', 'hand-pointing', 'link', 'mute', 'reorder-images', 'send', 'sound', 'speech', 'speech-ellipsis', 'switch-account', 'text-size', 'redo', 'undo', 'visit', ]); export { flipOnRtlIconNames, swapOnRtlIconNames };