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