sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 729 B
JavaScript
import React, { forwardRef } from 'react';
export const StretchVerticallyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "stretch vertically, 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="M1.5 1.5L18.5 1.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 18.5L18.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<rect width="4" height="12" rx="2" transform="matrix(1 0 0 -1 8 16)" fill="currentColor"/>
</svg>
));
export default StretchVerticallyIcon;