UNPKG

sebikostudio-icons

Version:
17 lines (12 loc) 1.24 kB
import React, { forwardRef } from 'react'; export const ScissorsIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "scissors, cut, cutters, slice, split"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M6.5 14C6.5 15.3807 5.38071 16.5 4 16.5C2.61929 16.5 1.5 15.3807 1.5 14C1.5 12.6193 2.61929 11.5 4 11.5C5.38071 11.5 6.5 12.6193 6.5 14Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M6.5 6C6.5 7.38071 5.38071 8.5 4 8.5C2.61929 8.5 1.5 7.38071 1.5 6C1.5 4.61929 2.61929 3.5 4 3.5C5.38071 3.5 6.5 4.61929 6.5 6Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M6 12.5L10.5 9.5M10.5 9.5L18.5 4.5H16L10.5 7.5V9.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16 4.5H18.5L10.5 9.5V7.5L16 4.5Z" fill="currentColor"/> <path d="M16 15.5H18.5L11.5 11V13L16 15.5Z" fill="currentColor"/> <path d="M6 7.5L7.5 8.46M18.5 15.5H16L11.5 13V11L18.5 15.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default ScissorsIcon;