import { cva } from "class-variance-authority" import Card from "@/components/MyProfile/Card" import Image from "@/components/Image" import LabelAndIcon from "../LabelAndIcon" import styles from "./profile.module.css" import type { ProfileProps } from "@/types/components/myPages/myProfile/profile" const profileStyles = cva(styles.profile) export default function Profile({ className, user, ...props }: ProfileProps) { return (
Account Icon {user.name}
SE Country Sweden Calendar Icon Date of Birth 27/05/1977 Email Icon Email f*********@g****.com Cellphone Icon Phone number +46 ******00 House Icon Address T*************** House Icon City/State S******* House Icon Zip code 1****
) }