ModalHeader
This component displays the upper part of the Modal in which the following elements may include:
- close button
- icon hero
- title and description
Examples
Basic version
Deactivate account
Are you sure you want to deactivate your account? All of your data will be permanently removed from our servers forever. This action cannot be undone
1// Example without a path to the image, with initials
2
3@molecules.ModalHeader("horizontal") {
4 @molecules.ModalHeaderClose("Close")
5 @molecules.ModalHeaderHero(false) {
6 @protons.IconHero(
7 &protons.IconHeroBosons{
8 Size: "lg",
9 },
10 ) {
11 @icons.IconTimes()
12 }
13 }
14 @molecules.ModalHeaderContent("Deactivate account", "left") {
15 Are you sure you want to deactivate your account? All of your data will be ...
16 }
17}
Version centered without closing
Deactivate account
Are you sure you want to deactivate your account? All of your data will be permanently removed from our servers forever. This action cannot be undone
1// Example centered without closing
2
3@molecules.ModalHeader(""vertical"") {
4 @molecules.ModalHeaderClose("Close")
5 @molecules.ModalHeaderHero(true) {
6 @protons.IconHero(
7 &protons.IconHeroBosons{
8 Size: "lg",
9 },
10 ) {
11 @icons.IconTimes()
12 }
13 }
14 @molecules.ModalHeaderContent("Deactivate account", "center") {
15 Are you sure you want to deactivate your account? All of your data will be ...
16 }
17}
Left version without IconHero
Deactivate account
Are you sure you want to deactivate your account? All of your data will be permanently removed from our servers forever. This action cannot be undone
1// Example without IconHero
2
3@molecules.ModalHeader("horizontal") {
4 @molecules.ModalHeaderClose("Close")
5 @molecules.ModalHeaderContent("Deactivate account", "left") {
6 Are you sure you want to deactivate your account? All of your data will be ...
7 }
8}
Version centered with additional content
Deactivate account
Are you sure you want to deactivate your account? All of your data will be permanently removed from our servers forever. This action cannot be undone
1// Example with additional content on top
2
3@molecules.ModalHeader("vertival") {
4 <div class="block h-20 w-full rounded-md bg-primary-400"></div>
5 @molecules.ModalHeaderContent("Deactivate account", "center") {
6 Are you sure you want to deactivate your account? All of your data will be ...
7 }
8}