# elementor/4.0.0-dev3/modules/design-system-sync/classes/sync-typography-props.php

Elementor Website Builder – more than just a page builder, version 4.0.0-dev3. 33 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.0.0-dev3/code/modules/design-system-sync/classes/sync-typography-props.php
- Raw: https://pluginprobe.com/plugins/elementor/4.0.0-dev3/raw/modules/design-system-sync/classes/sync-typography-props.php
- Modified: 2026-03-25T16:12:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.0.0-dev3/code/modules/design-system-sync/classes/sync-typography-props.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\DesignSystemSync\Classes;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Sync_Typography_Props {
	const PROP_MAP = [
		'font-family' => 'typography_font_family',
		'font-size' => 'typography_font_size',
		'font-weight' => 'typography_font_weight',
		'font-style' => 'typography_font_style',
		'text-decoration' => 'typography_text_decoration',
		'line-height' => 'typography_line_height',
		'letter-spacing' => 'typography_letter_spacing',
		'word-spacing' => 'typography_word_spacing',
		'text-transform' => 'typography_text_transform',
	];

	const RESPONSIVE_V3_PROPS = [
		'typography_font_size',
		'typography_line_height',
		'typography_letter_spacing',
		'typography_word_spacing',
	];

	public static function get_css_props(): array {
		return array_keys( self::PROP_MAP );
	}
}

```
