import GoodFriendSVG from "@/public/_static/icons/good-friend.svg" import { levelVariants } from "../variants" import type { LevelProps } from "../levels" export default function GoodFriend({ className, color }: LevelProps) { const classNames = levelVariants({ className, color, }) return ( ) }