<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Free Gift Base for Magento 2
 */

namespace Amasty\Promo\Model\OptionSource;

use Magento\Framework\Data\OptionSourceInterface;

class TextFonts implements OptionSourceInterface
{
    public function toOptionArray(): array
    {
        return [
            [
                'value' => 'Arial, Helvetica, sans-serif',
                'label' => 'Arial, Helvetica',
            ],
            [
                'value' => "'Arial Black', Gadget, sans-serif",
                'label' => 'Arial Black, Gadget',
            ],
            [
                'value' => "'Courier New', Courier, monospace",
                'label' => 'Courier New, Courier',
            ],
            [
                'value' => 'Georgia, serif',
                'label' => 'Georgia',
            ],
            [
                'value' => "'MS Sans Serif', Geneva, sans-serif",
                'label' => 'MS Sans Serif, Geneva',
            ],
            [
                'value' => "'Palatino Linotype', 'Book Antiqua', Palatino, serif",
                'label' => 'Palatino Linotype, Book Antiqua',
            ],
            [
                'value' => 'Tahoma, Geneva, sans-serif',
                'label' => 'Tahoma, Geneva',
            ],
            [
                'value' => "'Times New Roman', Times, serif",
                'label' => 'Times New Roman, Times',
            ],
            [
                'value' => "'Trebuchet MS', Helvetica, sans-serif",
                'label' => 'Trebuchet MS, Helvetica',
            ],
            [
                'value' => 'Verdana, Geneva, sans-serif',
                'label' => 'Verdana, Geneva',
            ],
        ];
    }
}
