import React, { FunctionComponent } from "react";
import { ChevronLeft } from "react-feather";
export const BackArrow: FunctionComponent = () => (
Back
);
export interface TileInfoProps {
title: string;
description: string;
tileIcon: React.ReactElement;
}
export const TileInfo: FunctionComponent = ({
title,
description,
tileIcon,
}) => (
);