A social knowledge tool for researchers built on ATProto
at development 21 lines 432 B view raw
1'use client'; 2 3import { useRouter } from 'next/navigation'; 4import { ActionIcon } from '@mantine/core'; 5import { BiSolidLeftArrowAlt } from 'react-icons/bi'; 6 7export default function BackButton() { 8 const router = useRouter(); 9 10 return ( 11 <ActionIcon 12 variant="light" 13 color="gray" 14 size={'lg'} 15 radius={'xl'} 16 onClick={() => router.back()} 17 > 18 <BiSolidLeftArrowAlt /> 19 </ActionIcon> 20 ); 21}