-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: review collapsible icons and alignment
- Loading branch information
1 parent
8e3c1bd
commit 8080482
Showing
3 changed files
with
56 additions
and
16 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/frontend/src/lib/components/icons/IconUnfoldLess.svelte
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 @@ | ||
<!-- source: https://fonts.google.com/icons?selected=Material+Symbols+Rounded:unfold_less:FILL@0;wght@400;GRAD@0;opsz@24&icon.size=24&icon.color=%23000000&icon.query=collapse&icon.style=Rounded --> | ||
<script lang="ts"> | ||
interface Props { | ||
size?: string; | ||
} | ||
let { size = '24px' }: Props = $props(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height={size} | ||
width={size} | ||
fill="currentColor" | ||
viewBox="0 -960 960 960" | ||
><path | ||
d="m480-284-96 96q-11 11-28 11t-28-11q-11-11-11-28t11-28l124-124q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l124 124q11 11 11 28t-11 28q-11 11-28 11t-28-11l-96-96Zm0-392 96-96q11-11 28-11t28 11q11 11 11 28t-11 28L508-592q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L328-716q-11-11-11-28t11-28q11-11 28-11t28 11l96 96Z" | ||
/></svg | ||
> |
19 changes: 19 additions & 0 deletions
19
src/frontend/src/lib/components/icons/IconUnfoldMore.svelte
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 @@ | ||
<!-- source: https://fonts.google.com/icons?selected=Material+Symbols+Rounded:unfold_more:FILL@0;wght@400;GRAD@0;opsz@24&icon.size=24&icon.color=%23000000&icon.query=collapse&icon.style=Rounded --> | ||
<script lang="ts"> | ||
interface Props { | ||
size?: string; | ||
} | ||
let { size = '24px' }: Props = $props(); | ||
</script> | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
height={size} | ||
width={size} | ||
fill="currentColor" | ||
viewBox="0 -960 960 960" | ||
><path | ||
d="m480-236 93-93q12-12 29-12t29 12q12 12 12 29t-12 29L508-148q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L329-271q-12-12-12-29t12-29q12-12 29-12t29 12l93 93Zm0-484-93 93q-12 12-29 12t-29-12q-12-12-12-29t12-29l123-123q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l123 123q12 12 12 29t-12 29q-12 12-29 12t-29-12l-93-93Z" | ||
/></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