// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import cx from "classnames" import React from "react" export default function ProfilePic({ url, size = "large", className, }: { url?: string size?: "small" | "medium" | "large" className?: string }) { return (
{url ? (
) : (
)}
) }