-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add another shrink button to the sidebar
- this might cause confusion since its not in the same spot as the other one but fingers crossed
- Loading branch information
1 parent
36da238
commit ca81e77
Showing
2 changed files
with
24 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,12 @@ | ||
// https://icon-sets.iconify.design/tdesign/shrink-horizontal/ | ||
|
||
export default function ShrinkHorizontal() { | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" className="h-4 w-5" viewBox="0 0 24 24"> | ||
<path | ||
fill="currentColor" | ||
d="M1.5 11h5.086l-2.5-2.5L5.5 7.086L10.414 12L5.5 16.914L4.086 15.5l2.5-2.5H1.5zM13 3v18h-2V3zm.586 9L18.5 7.086L19.914 8.5l-2.5 2.5H22.5v2h-5.086l2.5 2.5l-1.414 1.414z" | ||
></path> | ||
</svg> | ||
) | ||
} |