12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { Icon } from "@iconify/react";
|
|
|
|
export default function RandomLink() {
|
|
return (
|
|
<Link href={"/random"} aria-label="Go to Random Link" className="pill button !p-0 h-full aspect-square" data-tooltip="Go to a Random Mii">
|
|
<Icon icon="mdi:dice-3" fontSize={28} />
|
|
</Link>
|
|
);
|
|
}
|