# tableberg/trunk/renderer/Text/Defaults.php

Tableberg – Simple Gutenberg Table Block, version trunk. 43 lines.

- Page: https://pluginprobe.com/plugins/tableberg/trunk/code/renderer/Text/Defaults.php
- Raw: https://pluginprobe.com/plugins/tableberg/trunk/raw/renderer/Text/Defaults.php
- Modified: 2026-07-06T14:46:46+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/tableberg/trunk/code/renderer/Text/Defaults.php#L10-L20`.

```php
<?php

/**
 * Text Element Defaults
 *
 * AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
 * Generated from: packages/tableberg/src/elements/text/index.tsx
 *
 * @package Tableberg
 */

namespace Tableberg\Renderer\Text;

class Defaults {
    /**
     * @return array<string, mixed>
     */
    public static function get_defaults() {
        return [
            'content' => '',
            'align' => 'left',
            'styles' => [
                'textColor' => '#000000',
                'linkColor' => '',
                'backgroundColor' => '',
                'fontSize' => '1.38rem',
                'padding' => [
                    'top' => '',
                    'right' => '',
                    'bottom' => '',
                    'left' => '',
                ],
                'margin' => [
                    'top' => '',
                    'right' => '',
                    'bottom' => '',
                    'left' => '',
                ],
            ],
        ];
    }
}

```
