import { useGetIdentity } from "@refinedev/core" import { Identity } from "~/data/auth-provider" import { CrownIcon, PersonIcon, CloudIcon, CheckRoundedIcon, AddIcon, CloudDownloadIcon } from "./icons" import { Avatar } from "./ui/avatar" import { Button } from "./ui/button" export const UpgradeAccountBanner = () => { const { data: identity } = useGetIdentity(); return (
{`${identity?.firstName} ${identity?.lastName}`}
Lite Account (upgrade)
120 GB / 130 GB
10 GB / 25 GB
0% Free Usage
) }