import { getHexByColorType } from "../utils/colors";
import { BRZ_PREFIX } from "../constants";
export const getArrowHoverColor = (value, theme) => {
return value
? { [`--${BRZ_PREFIX}-rich-text-arrow-hover`]: getHexByColorType(theme === "dark" ? "white" : "gray-mid") }
: {};
};