From f7851f95dc95bda41e44e3fe05f20ff5c8e55c1a Mon Sep 17 00:00:00 2001 From: r0nz-29 Date: Tue, 2 May 2023 15:38:28 +0530 Subject: [PATCH] fix: key error in ThreeDotsIcon --- src/components/primitives/Icon/Icons/ThreeDots.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/primitives/Icon/Icons/ThreeDots.tsx b/src/components/primitives/Icon/Icons/ThreeDots.tsx index 273a07379..656ae5fb6 100644 --- a/src/components/primitives/Icon/Icons/ThreeDots.tsx +++ b/src/components/primitives/Icon/Icons/ThreeDots.tsx @@ -4,9 +4,9 @@ import { G, Path } from '../nbSvg'; export const ThreeDotsIcon = createIcon({ viewBox: '0 0 32.055 32.055', - path: [ + path: ( - , - ], + + ), });