Files
lichterei-web/kirby/config/fields/select.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

19 lines
315 B
PHP
Executable File

<?php
return [
'extends' => 'radio',
'props' => [
/**
* Unset inherited props
*/
'columns' => null,
/**
* Custom icon to replace the arrow down.
*/
'icon' => function (string $icon = null) {
return $icon;
},
]
];