/* eslint-disable max-len */ import * as React from 'react'; import { CSSProperties, HTMLAttributes, useState } from 'react'; import { Helpers } from '../../services/helpers'; export type Props = { color?: string; size?: number; style?: CSSProperties; } & HTMLAttributes; export function ShopSvgIcon({ color = 'currentColor', size = 16, style, ...props }: Props) { const [filterID] = useState(`f${Helpers.uniqId()}`); return ( ); }