/* * Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors. * SPDX-License-Identifier: GPL-2.0-or-later */ import React from "react"; import { classNames } from "@utils"; interface ButtonProps { className?: string; children: React.ReactNode; disabled?: boolean; onClick?: () => void; } export const Button = ({ children, className, disabled, onClick }: ButtonProps) => ( ); export const PageButton = ({ children, className, disabled, onClick }: ButtonProps) => ( );