fjohanssondev / podcast-app

https://podcast-app-henna.vercel.app
0 stars 0 forks source link

Create an AlertDialog component #19

Open fjohanssondev opened 11 months ago

fjohanssondev commented 11 months ago

The AlertDialog component should use the HTML5 dialogelement. It's purpose is mainly when you would do a destructive action. Such as deleting a user.

Features:

Example of structure


<AlertDialog.Root>
  <AlertDialog.Title>
    Hello World
  </AlertDialog.Title>
  <AlertDialog.Content>
    This will be the content of the dialog
  </AlertDialog.Content>
  <AlertDialog.Cancel>
    <button>Close</button>
  </AlertDialog.Cancel>
  <AlertDialog.Action>
    <button>Add</button>
  </AlertDialog.Action>
</AlertDialog.Root>