import IconButton from '@/shared/components/button/icon-button' type BackButtonProps = { href: string accessibilityLabel: string } function BackButton({ href, accessibilityLabel }: BackButtonProps) { return ( ) } export default BackButton