diff --git a/src/icons/DropdownIcon/DropdownIcon.tsx b/src/icons/DropdownIcon/DropdownIcon.tsx new file mode 100644 index 0000000..224919e --- /dev/null +++ b/src/icons/DropdownIcon/DropdownIcon.tsx @@ -0,0 +1,26 @@ +import * as React from "react"; +import { IconProps } from "../../interfaces/Interfaces"; + +import { Svg, Path } from "react-native-svg"; +import { colors } from "../../styles"; +import finalPropsSelectorFactory from "react-redux/es/connect/selectorFactory"; + +export default function DropdownIcon(props: IconProps) { + return ( + <> + + + + + + ); +} diff --git a/src/icons/UserInfoIcon/UserInfoIcon.tsx b/src/icons/UserInfoIcon/UserInfoIcon.tsx new file mode 100644 index 0000000..a36ef10 --- /dev/null +++ b/src/icons/UserInfoIcon/UserInfoIcon.tsx @@ -0,0 +1,34 @@ +import * as React from "react"; +import { IconProps } from "../../interfaces/Interfaces"; + +import { Svg, Path } from "react-native-svg"; +import { colors } from "../../styles"; +import finalPropsSelectorFactory from "react-redux/es/connect/selectorFactory"; + +export default function UserInfoIcon(props: IconProps) { + return ( + <> + + + + + + + + + + + + + + ); +}