sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 893 B
JavaScript
import React, { forwardRef } from 'react';
export const LineHeight2Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "line height, arrow up down, arrows, text, lines, text line height"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M4.5 4L1.5 7.5M4.5 4L7.5 7.5M4.5 4V16M4.5 16L1.5 12.5M4.5 16L7.5 12.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 13.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 9.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 5.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default LineHeight2Icon;