sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 895 B
JavaScript
import React, { forwardRef } from 'react';
export const SpaceEvenlyVerticallyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "space evenly vertically, space evenly, evenly, space, even"} 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 18.5L1.5 18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 1.5L1.5 1.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<rect width="4" height="5" rx="1" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 12 11)" fill="currentColor"/>
<rect width="4" height="5" rx="1" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 12 4)" fill="currentColor"/>
</svg>
));
export default SpaceEvenlyVerticallyIcon;