import styles from "./notice.module.scss"
import { TbAlertTriangleFilled } from "react-icons/tb";
import { Link } from "@inertiajs/react";

const Notice = () => {
  return (
    <div className={ styles["notice"] }>
        <div className={ styles["notice--text"] }>
            <span><TbAlertTriangleFilled fill="#F79318" /></span>
            <p>Your account is almost set. Please complete your profile. Click <Link href="/dashboard/complete-profile">Here</Link> to continue</p>
        </div>
    </div>
  )
}

export default Notice