-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick variations button; allows users to generate 3 more variations i…
…mmediately
- Loading branch information
1 parent
7b13ba7
commit 6b90a17
Showing
3 changed files
with
34 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
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,11 @@ | ||
// customized icon from the plus icon, edited via https://yqnn.github.io/svg-path-editor/ | ||
|
||
export default function WindowPlus() { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" className="h-4 w-4" viewBox="0 0 24 24"> | ||
<g fill="none" stroke="currentColor" strokeLinecap="round" strokeWidth={1.5}> | ||
<path d="M14 21H4a2 2 0 01-2-2V5a2 2 0 012-2h16a2 2 0 012 2v8M2 7h20M5 5l0 0M8 5l0 0M11 5l0 0M17 19l6 0M20 16V22"></path> | ||
</g> | ||
</svg> | ||
) | ||
} |