MCPcopy
hub / github.com/nonebot/nonebot2 / Props

Interface Props

website/src/components/Resource/Avatar/index.tsx:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import clsx from "clsx";
4
5interface Props {
6 className?: string;
7 authorLink: string;
8 authorAvatar: string;
9}
10
11export default function Avatar({ authorLink, authorAvatar, className }: Props) {
12 const [loaded, setLoaded] = useState(false);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected