sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 754 B
JavaScript
import React, { forwardRef } from 'react';
export const StretchHorizontallyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "stretch horizontally, stretch, lines"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M18.5 1.5L18.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 1.5L1.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<rect width="4" height="12" rx="2" transform="matrix(-4.37114e-08 1 1 4.37114e-08 4 8)" fill="currentColor"/>
</svg>
));
export default StretchHorizontallyIcon;