diff --git a/src/components/HomeHeader.tsx b/src/components/HomeHeader.tsx index bf735a5..89f6064 100644 --- a/src/components/HomeHeader.tsx +++ b/src/components/HomeHeader.tsx @@ -1,8 +1,16 @@ import { Heading, HStack, Text, VStack } from "@gluestack-ui/themed"; +import { UserPhoto } from "./UserPhoto"; export function HomeHeader() { return ( - + + + Olá, diff --git a/src/components/UserPhoto.tsx b/src/components/UserPhoto.tsx new file mode 100644 index 0000000..77d447c --- /dev/null +++ b/src/components/UserPhoto.tsx @@ -0,0 +1,17 @@ +import { ComponentProps } from "react"; +import { Image } from "@gluestack-ui/themed"; + +type Props = ComponentProps; + +export function UserPhoto({ ...others }: Props) { + return ( + + ) +}