UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 743 B
import React, { forwardRef } from 'react'; export const Component1Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "component"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M10 2L13 5L10 8L7 5L10 2Z" stroke="currentColor" strokeLinejoin="round"/> <path d="M5 7L8 10L5 13L2 10L5 7Z" stroke="currentColor" strokeLinejoin="round"/> <path d="M15 7L18 10L15 13L12 10L15 7Z" stroke="currentColor" strokeLinejoin="round"/> <path d="M10 12L13 15L10 18L7 15L10 12Z" stroke="currentColor" strokeLinejoin="round"/> </svg> )); export default Component1Icon;