| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Button Element Defaults |
| 5 |
* |
| 6 |
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY |
| 7 |
* Generated from: packages/tableberg/src/elements/button/index.tsx |
| 8 |
* |
| 9 |
* @package Tableberg |
| 10 |
*/ |
| 11 |
|
| 12 |
namespace Tableberg\Renderer\Button; |
| 13 |
|
| 14 |
class Defaults { |
| 15 |
/** |
| 16 |
* @return array<string, mixed> |
| 17 |
*/ |
| 18 |
public static function get_defaults() { |
| 19 |
return [ |
| 20 |
'content' => '', |
| 21 |
'id' => '', |
| 22 |
'align' => 'left', |
| 23 |
'link' => [ |
| 24 |
'url' => '', |
| 25 |
'target' => '_self', |
| 26 |
], |
| 27 |
'styles' => [ |
| 28 |
'backgroundColor' => '#000000', |
| 29 |
'textColor' => '#ffffff', |
| 30 |
'backgroundHoverColor' => '', |
| 31 |
'textHoverColor' => '', |
| 32 |
'textAlign' => 'center', |
| 33 |
'width' => 'auto', |
| 34 |
'padding' => [ |
| 35 |
'top' => 'var(--wp--preset--spacing--20)', |
| 36 |
'right' => 'var(--wp--preset--spacing--20)', |
| 37 |
'bottom' => 'var(--wp--preset--spacing--20)', |
| 38 |
'left' => 'var(--wp--preset--spacing--20)', |
| 39 |
], |
| 40 |
'borderRadius' => [ |
| 41 |
'topLeft' => '4px', |
| 42 |
'topRight' => '4px', |
| 43 |
'bottomRight' => '4px', |
| 44 |
'bottomLeft' => '4px', |
| 45 |
], |
| 46 |
'fontSize' => '1.38rem', |
| 47 |
], |
| 48 |
]; |
| 49 |
} |
| 50 |
} |
| 51 |
|