UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 896 B
import React, { forwardRef } from 'react'; export const SpaceBetweenHorizontallyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "space between horizontally, space between, between, space"} 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"/> <path d="M14 8C13.4477 8 13 8.44772 13 9L13 11C13 11.5523 13.4477 12 14 12L19 12L19 8L14 8Z" fill="currentColor"/> <path d="M1 8L1 12L6 12C6.55228 12 7 11.5523 7 11L7 9C7 8.44772 6.55228 8 6 8L1 8Z" fill="currentColor"/> </svg> )); export default SpaceBetweenHorizontallyIcon;