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