2025-04-24 13:11:28 +08:00

21 lines
409 B
TypeScript

import IconButton from '@/features/ui/components/bootstrap-5/icon-button'
type BackButtonProps = {
href: string
accessibilityLabel: string
}
function BackButton({ href, accessibilityLabel }: BackButtonProps) {
return (
<IconButton
variant="ghost"
href={href}
size="lg"
icon="arrow_back"
accessibilityLabel={accessibilityLabel}
/>
)
}
export default BackButton