mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

[web] Group settings BS5 feature flag tear down GitOrigin-RevId: c83297771dfeeb0426096b3b0765d6c420356d2a
20 lines
409 B
TypeScript
20 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
|