* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://getkirby.com/license * @since 5.0.0 * @unstable */ class PdfFilePreview extends FilePreview { public function __construct( public File $file, public string $component = 'k-pdf-file-preview' ) { } public static function accepts(File $file): bool { return $file->extension() === 'pdf'; } }