sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 968 B
JavaScript
import React, { forwardRef } from 'react';
export const LetterCaseCapitalizeIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "letter case capitalize, capitalize, capital"} 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="M3 11.5H7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 7.5V15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 11.5C18.5 13.7091 16.933 15.5 15 15.5C13.067 15.5 11.5 13.7091 11.5 11.5C11.5 9.29086 13.067 7.5 15 7.5C16.933 7.5 18.5 9.29086 18.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default LetterCaseCapitalizeIcon;