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