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

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

- Page: https://pluginprobe.com/plugins/tableberg/trunk/code/renderer/Icon/Defaults.php
- Raw: https://pluginprobe.com/plugins/tableberg/trunk/raw/renderer/Icon/Defaults.php
- Modified: 2026-05-04T16:51:12+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/Icon/Defaults.php#L10-L20`.

```php
<?php

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

namespace Tableberg\Renderer\Icon;

class Defaults {
    /**
     * @return array<string, mixed>
     */
    public static function get_defaults() {
        return [
            'icon' => [
                'iconName' => 'check',
                'svg' => [
                    'viewBox' => '0 0 512 512',
                    'path' => 'M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z',
                ],
            ],
            'size' => '40px',
            'behavior' => 'paragraph',
            'link' => [
                'url' => '',
                'target' => '_self',
            ],
            'styles' => [
                'align' => 'left',
                'rotation' => 0,
                'color' => '',
                'colorHover' => '',
                'background' => '',
                'backgroundHover' => '',
                'padding' => [
                    'top' => 'var(--wp--preset--spacing--20)',
                    'right' => 'var(--wp--preset--spacing--20)',
                    'bottom' => 'var(--wp--preset--spacing--20)',
                    'left' => 'var(--wp--preset--spacing--20)',
                ],
                'border' => [
                    'top' => '',
                    'right' => '',
                    'bottom' => '',
                    'left' => '',
                ],
                'borderRadius' => [
                    'topLeft' => '',
                    'topRight' => '',
                    'bottomLeft' => '',
                    'bottomRight' => '',
                ],
            ],
        ];
    }
}

```
