sebikostudio-icons
Version:
A collection of icon components
12 lines (7 loc) • 608 B
JavaScript
import React, { forwardRef } from 'react';
export const Pencil1Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "pencil, edit, drawing"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M5.63799 16.2448L3.7552 14.362M15.3891 7.6109L12.3995 4.62131M17.5 5.5L14.5208 2.5L4.5 12.5L2.5 17.5L7.5 15.5L17.5 5.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default Pencil1Icon;