sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.07 kB
JavaScript
import React, { forwardRef } from 'react';
export const LetterCaseLowercaseIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "letter case lowercase, lowercase, letters"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M8.5 7.5V15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.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"/>
<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 LetterCaseLowercaseIcon;