create table T1
(
id int identity(1,1),
concurrencyID rowversion
)
Then look at the table using:
sp_help T1
This shows the column with a data type of timestamp, not rowversion.

In fact if we use the Table designer in SSMS, rowversion is not even a choice.

So you cannot choose the rowversion type in the GUI tools in SSMS, but you can in TSQL but SQL server will switch it back to timestamp as demonstrated.