import type { ButtonHTMLAttributes } from "react";

import Button from "./Button";
import { useI18n } from "../composables";

import "./GetStarted.scss";

interface GetStartedProps {
	onClick?: ButtonHTMLAttributes<HTMLButtonElement>["onClick"];
}

export default function GetStarted({ onClick }: GetStartedProps) {
	const { t } = useI18n();

	return (
		<div className="chat-get-started">
			<Button onClick={onClick}>{t("getStarted")}</Button>
		</div>
	);
}
