There are no buttons to speak of in the codebook package. If you have created a codebook object (codebook_data) in your environment pane, you can write it to an external file named codebook.xls with
library(rio)
export(codebook_data, "codebook.xls")
or
library(writexl)
write_xlsx(codebook_data, "codebook.xlsx")