import Button from 'components/Button' import { ArrowRight } from 'components/Icons' import Text from 'components/Text' interface Props { isCreating: boolean createAccount: () => void } export default function CreateAccount(props: Props) { return (
Create a Credit Account Please approve the transaction in your wallet in order to create your first Credit Account.
) }