-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from ConductionNL/feature/PC108-103/taken-afro…
…nden added handle task button
- Loading branch information
Showing
5 changed files
with
64 additions
and
18 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,13 @@ | ||
import { getTheme } from '../../getTheme.js' | ||
|
||
/** | ||
* Returns the correct 'calendar-check-outline' icon based on the theme as a class name. | ||
* | ||
* this class name can be put into a component that accepts an 'icon' prop | ||
* @return {string} | ||
*/ | ||
export function iconCalendarCheckOutline() { | ||
const theme = getTheme() | ||
|
||
return theme === 'light' ? 'icon-calendar-check-outline-dark' : 'icon-calendar-check-outline-light' | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { iconProgressClose as _iconProgressClose } from './icon/icon-progress-close.js' | ||
import { iconPencil as _iconPencil } from './icon/icon-pencil.js' | ||
import { iconCalendarCheckOutline as _iconCalendarCheckOutline } from './icon/icon-calendar-check-outline.js' | ||
|
||
export const iconProgressClose = _iconProgressClose() | ||
export const iconPencil = _iconPencil() | ||
export const iconCalendarCheckOutline = _iconCalendarCheckOutline() |
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