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