UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 609 B
import React, { forwardRef } from 'react'; export const CornerRoundIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "corner round, corner, corner roundness, stroke corner radius"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M2 10V18H9V13H7V7H13V9H18V2H10C5.58172 2 2 5.58172 2 10Z" fill="currentColor"/> <path d="M18 14V11H13V13H11V18H14V14H18Z" fill="currentColor"/> </svg> )); export default CornerRoundIcon;