back-button.tsx 409 B

1234567891011121314151617181920
  1. import IconButton from '@/features/ui/components/bootstrap-5/icon-button'
  2. type BackButtonProps = {
  3. href: string
  4. accessibilityLabel: string
  5. }
  6. function BackButton({ href, accessibilityLabel }: BackButtonProps) {
  7. return (
  8. <IconButton
  9. variant="ghost"
  10. href={href}
  11. size="lg"
  12. icon="arrow_back"
  13. accessibilityLabel={accessibilityLabel}
  14. />
  15. )
  16. }
  17. export default BackButton