import React from 'react';
import { Flex, Box, color, space } from '@stacks/ui';
import ArrowLeftIcon from 'mdi-react/ArrowLeftIcon';
import { Text } from '@components/typography';
import Link from 'next/link';
const Wrapper = ({ href, children }) =>
href ? (
{children}
) : (
children
);
export const BackButton = ({ href, ...rest }) => (
Back
);