sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 672 B
JavaScript
import React, { forwardRef } from 'react';
export const CropIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "crop, cropped, lines, box, frame, artboard"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M5.5 1.5L5.5 14.5L11.5 14.5H12M18.5 14.5H17" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M1.5 5.5L3 5.5M14.5 18.5L14.5 5.5L9 5.5L8 5.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default CropIcon;