import React, {FC, PropsWithChildren} from "react"; import classNames from "classnames"; export type LargeButtonProps = { onClick: () => void, className?: string, } export const LargeButton: FC = ({children, onClick, className = ''}) => { return }