sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 722 B
JavaScript
import React, { forwardRef } from 'react';
export const ColumnSpacingIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "column spacing, column 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="M18.5 9.5L15.5 6.5M18.5 9.5L15.5 12.5M18.5 9.5H13.5M1.5 9.5L4.5 6.5M1.5 9.5L4.5 12.5M1.5 9.5L6.5 9.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10 1.5V17.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default ColumnSpacingIcon;