sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 700 B
JavaScript
import React, { forwardRef } from 'react';
export const RowSpacingIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "row spacing, row gap, space between, spacing"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M10 17.5L13 14.5M10 17.5L7 14.5M10 17.5L10 12.5M10 1.5L13 4.5M10 1.5L7 4.5M10 1.5V6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 9.5L1.5 9.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default RowSpacingIcon;