-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix formatting in re-share invite modal (#14120)
[Linear ticket](https://linear.app/lightsparkdev/issue/LIG-7080/fix-formatting-in-re-share-invite-modal) Also adds the ability to add an icon to the submit button on a modal as well as determine button order. <img width="533" alt="Screenshot 2024-12-09 at 12 40 10 PM" src="https://github.com/user-attachments/assets/e3f9f61f-5ee2-4f88-802b-0252852bb8d8"> <img width="449" alt="Screenshot 2024-12-09 at 12 40 16 PM" src="https://github.com/user-attachments/assets/f72925d4-5619-4d50-87d6-d9bc178c24d0"> GitOrigin-RevId: d23398a1e830ee041f78502766c52b9b9024e5fc
- Loading branch information
Showing
4 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
export function EmailPlus() { | ||
return ( | ||
<svg | ||
width="40" | ||
height="40" | ||
viewBox="0 0 40 40" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M35 16.6667V8.33337H5V31.6667H20" | ||
stroke="currentColor" | ||
strokeWidth="3.33333" | ||
strokeLinecap="square" | ||
/> | ||
<path | ||
d="M35 9.39368L20 18.3331L5 9.39368" | ||
stroke="currentColor" | ||
strokeWidth="3.33333" | ||
/> | ||
<path | ||
d="M31.668 23.3334V33.3334" | ||
stroke="currentColor" | ||
strokeWidth="3.33333" | ||
strokeLinecap="square" | ||
/> | ||
<path | ||
d="M36.668 28.3334H26.668" | ||
stroke="currentColor" | ||
strokeWidth="3.33333" | ||
strokeLinecap="square" | ||
/> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export function MessageBubble() { | ||
return ( | ||
<svg | ||
width="20" | ||
height="20" | ||
viewBox="0 0 20 20" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M12.7096 8.125H7.29297M10.2096 11.875H7.29297M2.29297 16.875H13.543C15.8441 16.875 17.7096 15.0095 17.7096 12.7083V7.29167C17.7096 4.99048 15.8441 3.125 13.543 3.125H6.45964C4.15845 3.125 2.29297 4.99048 2.29297 7.29167V16.875Z" | ||
stroke="currentColor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters