sebikostudio-icons
Version:
A collection of icon components
17 lines (12 loc) • 1.1 kB
JavaScript
import React, { forwardRef } from 'react';
export const ColumnFullWidthToLeftIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "column full width to left, column full width, two columns, containers, content, web"} 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 15.5H10.5V4.5H18.5V15.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 18.5H1.5V1.5H10.5V18.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M17.5 1.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M17.5 18.5H18.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M13.5 1.5H14.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M13.5 18.5H14.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default ColumnFullWidthToLeftIcon;