UNPKG

sebikostudio-icons

Version:
16 lines (11 loc) 1.02 kB
import React, { forwardRef } from 'react'; export const MixIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "mix, shapes, square, triangle, circle, cross"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M12.5 17.5V12.5H17.5V17.5H12.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M8 5C8 6.65685 6.65685 8 5 8C3.34315 8 2 6.65685 2 5C2 3.34315 3.34315 2 5 2C6.65685 2 8 3.34315 8 5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 2.5L17.5 7.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M17.5 2.5L12.5 7.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M2.5 18.5V11.5L8.5 15L2.5 18.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default MixIcon;