mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
32 lines
698 B
PHP
32 lines
698 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components;
|
|
|
|
class IconButton extends Button
|
|
{
|
|
public string $glyph = '';
|
|
|
|
public function __construct(array $attributes)
|
|
{
|
|
$iconButtonAttributes = [
|
|
'isSquared' => 'true',
|
|
'title' => $attributes['slot'],
|
|
'data-tooltip' => 'bottom',
|
|
];
|
|
|
|
$glyphSize = [
|
|
'small' => 'text-sm',
|
|
'base' => 'text-lg',
|
|
'large' => 'text-2xl',
|
|
];
|
|
|
|
$allAttributes = array_merge($attributes, $iconButtonAttributes);
|
|
|
|
parent::__construct($allAttributes);
|
|
|
|
$this->slot = icon($this->glyph, $glyphSize[$this->size]);
|
|
}
|
|
}
|