import { levelVariants } from "../../variants" import type { LevelProps } from "../../levels" export default function DearFriend({ className, "aria-label": ariaLabel, color, height = "44", width = "294", ...props }: LevelProps) { const classNames = levelVariants({ className, color, }) return ( ) }