import { cva } from "class-variance-authority" import Image from "@/components/Image" import Card from "@/components/MyProfile/Card" import styles from "./profile.module.css" import type { ContainerProps } from "@/types/components/myPages/myProfile/container" const profileStyles = cva(styles.profile) export default function Container({ children, className, user, ...props }: ContainerProps) { return (
Account Icon {user.name}
{children}
) }