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