sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 570 B
JavaScript
import React, { forwardRef } from 'react';
export const CornerMiterIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "corner miter, corner, stroke corner miter, miter"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M2 2V18H9V13H7V7H13V9H18V2H2Z" fill="currentColor"/>
<path d="M18 14V11H13V13H11V18H14V14H18Z" fill="currentColor"/>
</svg>
));
export default CornerMiterIcon;