-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add icons to the tabs on the plan detail page
- changed the <input> to <div> to allow for icons - created an InfoIcon for the info tab - used CalendarMonthIcon for the calendar tab note: it seems that the color of the icons is not being styled correctly
- Loading branch information
1 parent
f5d9bab
commit d9260cd
Showing
3 changed files
with
32 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script lang="ts"> | ||
// info from https://fonts.google.com/icons | ||
// Filled = 1 | ||
// Weight = 400 | ||
// Grade = 0 | ||
// Optical size = 24px | ||
export let color = 'black'; | ||
</script> | ||
|
||
<svg fill={color} xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" | ||
><path d="M0 0h24v24H0V0z" fill="none" /><path | ||
d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" | ||
/></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
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