File "attributes.php"

Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/google-map/attributes.php
File size: 401 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use XTS\Gutenberg\Block_Attributes;

if ( ! function_exists( 'wd_get_block_google_map_attrs' ) ) {
	function wd_get_block_google_map_attrs() {
		$attr = new Block_Attributes();

		$attr->add_attr(
			array(
				'height' => array(
					'type'       => 'string',
					'default'    => '400',
					'responsive' => true,
					'unit'       => 'px',
				),
			)
		);

		return $attr->get_attr();
	}
}