UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 723 B
import React, { forwardRef } from 'react'; export const ColumnsIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "columns, cols"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M1.5 5.5V14.5H4.5V5.5H1.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M8.5 5.5V14.5H11.5V5.5H8.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M15.5 5.5V14.5H18.5V5.5H15.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default ColumnsIcon;