import * as React from "react"; import { View } from "react-native"; import { InfoContainer, ShowButton } from "./styled"; import Button from "../ui/button"; import { circleIn } from "../animations/easings"; type Props = { onManageMySubscription: () => void; onEditProfile: () => void; onLogout: () => void; }; function Info({ onManageMySubscription, onLogout, onEditProfile }: Props) { return (