UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 592 B
import React, { forwardRef } from 'react'; export const CornerBottomLeftIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "corner bottom left, corner, corner bottom, bottom, left"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M4.5 4.5V8.5C4.5 12.366 7.63401 15.5 11.5 15.5H15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default CornerBottomLeftIcon;