UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 827 B
import React, { forwardRef } from 'react'; export const TextAlignJustifyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "text align justify, text justify, text, justify"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M16.5 3.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16.5 7.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16.5 15.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16.5 11.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default TextAlignJustifyIcon;