import React, {FC, PropsWithChildren} from "react";
import classNames from "classnames";

export type LargeButtonProps = {
    onClick: () => void,
    className?: string,
}

export const LargeButton: FC<LargeButtonProps & PropsWithChildren> = ({children, onClick, className = ''}) => {
    return <button className={className + ' px-8 py-2 text-3x font-medium rounded-2 bg-blue-normal text-blue-10'} onClick={onClick}>{children}</button>
}
