UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 1.1 kB
import React, { forwardRef } from 'react'; export const TokensIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "tokens, circles, variables"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M8.5 6C8.5 7.38071 7.38071 8.5 6 8.5C4.61929 8.5 3.5 7.38071 3.5 6C3.5 4.61929 4.61929 3.5 6 3.5C7.38071 3.5 8.5 4.61929 8.5 6Z" stroke="currentColor"/> <path d="M8.5 14C8.5 15.3807 7.38071 16.5 6 16.5C4.61929 16.5 3.5 15.3807 3.5 14C3.5 12.6193 4.61929 11.5 6 11.5C7.38071 11.5 8.5 12.6193 8.5 14Z" stroke="currentColor"/> <path d="M16.5 6C16.5 7.38071 15.3807 8.5 14 8.5C12.6193 8.5 11.5 7.38071 11.5 6C11.5 4.61929 12.6193 3.5 14 3.5C15.3807 3.5 16.5 4.61929 16.5 6Z" stroke="currentColor"/> <path d="M16.5 14C16.5 15.3807 15.3807 16.5 14 16.5C12.6193 16.5 11.5 15.3807 11.5 14C11.5 12.6193 12.6193 11.5 14 11.5C15.3807 11.5 16.5 12.6193 16.5 14Z" stroke="currentColor"/> </svg> )); export default TokensIcon;