sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 827 B
JavaScript
import React, { forwardRef } from 'react';
export const BarChartHorizontal2Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "bar chart horizontal, chart, bars, lines"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M3.5 2.5L9.5 2.5L9.5 5.5L3.5 5.5L3.5 2.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M3.5 17.5L12.5 17.5L12.5 14.5L3.5 14.5L3.5 17.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M3.5 11.5L15.5 11.5L15.5 8.5L3.5 8.5L3.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default BarChartHorizontal2Icon;