UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 852 B
import React, { forwardRef } from 'react'; export const LetterCaseUppercaseIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "letter case uppercase, uppercase, capital letters"} 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 15.5L5 4.5L8.5 15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M11.5 15.5L15 4.5L18.5 15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M3 11.5H7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M13 11.5H17" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default LetterCaseUppercaseIcon;