Sign Out Button

A button that signs out the user

a button that signs out the user

  • it has a label
  • it has a click event that signs out the user

Installation

npx shadcn@latest add https://shuip.xyz/r/button.signout.json

Usage

import ButtonSignout from '@/components/ui/shuip/button.signout';
export default function ButtonSignoutExample() {
return <ButtonSignout withLogo onConfirm={() => alert('Signout!')} />;
}