From 2de2ac4c923ebddedb728e7a6867c28342ba87c9 Mon Sep 17 00:00:00 2001 From: Masykuri Syaifullah Date: Sat, 18 Feb 2023 23:36:26 +0700 Subject: [PATCH] fix: missing the `key` prop for ThreeDotsIcon issues ref: https://github.com/GeekyAnts/NativeBase/issues/4429#issuecomment-1227985564 --- 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 273a07379a..656ae5fb68 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: ( - , - ], + + ), });