UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 836 B
import React, { forwardRef } from 'react'; export const TextAlignCenterIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "text align center, text center, center, text, align center"} 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="M13.5 7.5H6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M13.5 15.5H6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16.5 11.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default TextAlignCenterIcon;