1$this->add_control(
2 'show_elements',
3 [
4 'label' => __( 'Show Elements', 'plugin-domain' ),
5 'type' => \Elementor\Controls_Manager::SELECT2,
6 'multiple' => true,
7 'options' => [
8 'title' => __( 'Title', 'plugin-domain' ),
9 'description' => __( 'Description', 'plugin-domain' ),
10 'button' => __( 'Button', 'plugin-domain' ),
11 ],
12 'default' => [ 'title', 'description' ],
13 ]
14 );