import * as React from 'react'; type Props = { tintColor: string; }; export default function BackButton({ tintColor }: Props) { return ( ); }