sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 709 B
JavaScript
import React, { forwardRef } from 'react';
export const ChartLineDownIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "chart line down, downtrend, trend down, decrease, loss, bear market"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M2.5 3.5V16.5H17.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2.5 6.5L7.5 10.5L10.5 7.5L17.5 13.5M17.5 13.5V10.5M17.5 13.5H14" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default ChartLineDownIcon;