mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 02:24:20 +08:00
also: • update billing pages with new plan details. • tidying up of smaller screen size responsiveness • fixed issue with undefined name in enterprise contact form
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import { Button, IconArrowLeft } from '@supabase/ui'
|
|
|
|
export function BackButton({ onClick }: { onClick: () => void }) {
|
|
return (
|
|
<div className="2xl:absolute 2xl:top-[2px] -ml-2 2xl:-left-24">
|
|
<Button type="text" icon={<IconArrowLeft />} onClick={onClick}>
|
|
Back
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BackButton
|