import { sendTransaction } from "thirdweb";
import { transferFrom } from "thirdweb/extensions/erc721";
const transaction = transferFrom({
contract,
from: ...,
to: ...,
tokenId: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });