/********************************************************************* * © Copyright IBM Corp. 2025 *********************************************************************/ import React from 'react' import {FontColorSuccess, MrWhite} from '@targetprocess/css-variables' interface Props { backgroundColor?: string arrowColor?: string } export const VerticalArrowsIcon = ({ backgroundColor = FontColorSuccess, arrowColor = MrWhite }: Props) => ( ) VerticalArrowsIcon.category = 'Common Actions'