| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Icon Element Defaults |
| 5 |
* |
| 6 |
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY |
| 7 |
* Generated from: packages/tableberg/src/elements/icon/index.tsx |
| 8 |
* |
| 9 |
* @package Tableberg |
| 10 |
*/ |
| 11 |
|
| 12 |
namespace Tableberg\Renderer\Icon; |
| 13 |
|
| 14 |
class Defaults { |
| 15 |
/** |
| 16 |
* @return array<string, mixed> |
| 17 |
*/ |
| 18 |
public static function get_defaults() { |
| 19 |
return [ |
| 20 |
'icon' => [ |
| 21 |
'iconName' => 'check', |
| 22 |
'svg' => [ |
| 23 |
'viewBox' => '0 0 512 512', |
| 24 |
'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', |
| 25 |
], |
| 26 |
], |
| 27 |
'size' => '40px', |
| 28 |
'behavior' => 'paragraph', |
| 29 |
'link' => [ |
| 30 |
'url' => '', |
| 31 |
'target' => '_self', |
| 32 |
], |
| 33 |
'styles' => [ |
| 34 |
'align' => 'left', |
| 35 |
'rotation' => 0, |
| 36 |
'color' => '', |
| 37 |
'colorHover' => '', |
| 38 |
'background' => '', |
| 39 |
'backgroundHover' => '', |
| 40 |
'padding' => [ |
| 41 |
'top' => 'var(--wp--preset--spacing--20)', |
| 42 |
'right' => 'var(--wp--preset--spacing--20)', |
| 43 |
'bottom' => 'var(--wp--preset--spacing--20)', |
| 44 |
'left' => 'var(--wp--preset--spacing--20)', |
| 45 |
], |
| 46 |
'border' => [ |
| 47 |
'top' => '', |
| 48 |
'right' => '', |
| 49 |
'bottom' => '', |
| 50 |
'left' => '', |
| 51 |
], |
| 52 |
'borderRadius' => [ |
| 53 |
'topLeft' => '', |
| 54 |
'topRight' => '', |
| 55 |
'bottomLeft' => '', |
| 56 |
'bottomRight' => '', |
| 57 |
], |
| 58 |
], |
| 59 |
]; |
| 60 |
} |
| 61 |
} |
| 62 |
|