Suppose, If I have created NFTs using metaplex libraries. Can I transfer those created NFTs using SPL token transfer function ? ``` token::transfer( CpiContext::new( token_program.to_account_info(), token::Transfer { from: sender_tokens.to_account_info(), to: recipient_tokens.to_account_info(), authority: sender.to_account_info(), }, ), token_amount, )?; ```
Suppose, If I have created NFTs using metaplex libraries.
Can I transfer those created NFTs using SPL token transfer function ?