From f95268a57cd4d9b16961b79f3e18e414e0c6c393 Mon Sep 17 00:00:00 2001 From: leKimChiii Date: Sun, 16 Apr 2023 17:29:30 +0800 Subject: [PATCH] added logout icon --- .../Icons/LogoutIcon/LogoutIcon.tsx | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Components/Icons/LogoutIcon/LogoutIcon.tsx diff --git a/src/Components/Icons/LogoutIcon/LogoutIcon.tsx b/src/Components/Icons/LogoutIcon/LogoutIcon.tsx new file mode 100644 index 0000000..8688ec4 --- /dev/null +++ b/src/Components/Icons/LogoutIcon/LogoutIcon.tsx @@ -0,0 +1,25 @@ +import * as React from "react"; +import { IconProps } from "../../../Interfaces/Interfaces"; + +import { Svg, Path } from "react-native-svg"; + +export default function LogoutIcon(props: IconProps) { + return ( + <> + + + + + + + ); +} \ No newline at end of file