import React from 'react'; interface MarginCrisisIconProps { className?: string; width?: number | string; height?: number | string; strokeColor?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export const MarginCrisisIcon: React.FC = ({ className = '', width = 148, height = 148, strokeColor = '#F357BB' }) => { return ( ); };