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