sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 976 B
JavaScript
import React, { forwardRef } from 'react';
export const LetterCaseToggleIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "letter case toggle, lowercase, uppercase, lower, upper, large, small"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M11.5 15.5L15 4.5L18.5 15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M13 11.5H17" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.5 7.5V15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.5 11.5C8.5 13.7091 6.933 15.5 5 15.5C3.067 15.5 1.5 13.7091 1.5 11.5C1.5 9.29086 3.067 7.5 5 7.5C6.933 7.5 8.5 9.29086 8.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default LetterCaseToggleIcon;