import { levelVariants } from "../../variants" import type { LevelProps } from "../../levels" export default function BestFriend({ className, color, height = "44", width = "274", ...props }: LevelProps) { const classNames = levelVariants({ className, color, }) return ( ) }