/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the `IconFlip` direction. * * Use this type to control how to flip an icon. The possible values are: * - `default`: No flip applied. * - `horizontal`: Flip the icon horizontally. * - `vertical`: Flip the icon vertically. * - `both`: Flip the icon both horizontally and vertically. * */ export type IconFlip = 'default' | 'horizontal' | 'vertical' | 'both';