-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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 #37437 from Expensify/cmartins-useThemeIllustrations
Use theme illustrations for workspace profile
- Loading branch information
Showing
4 changed files
with
8 additions
and
6 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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
import EmptyStateBackgroundImage from '@assets/images/themeDependent/empty-state_background-fade-dark.png'; | ||
import ExampleCheckEN from '@assets/images/themeDependent/example-check-image-dark-en.png'; | ||
import ExampleCheckES from '@assets/images/themeDependent/example-check-image-dark-es.png'; | ||
import WorkspaceProfile from '@assets/images/workspace-profile.png'; | ||
import type IllustrationsType from '@styles/theme/illustrations/types'; | ||
|
||
const illustrations = { | ||
EmptyStateBackgroundImage, | ||
ExampleCheckEN, | ||
ExampleCheckES, | ||
WorkspaceProfile, | ||
} satisfies IllustrationsType; | ||
|
||
export default illustrations; |
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,12 +1,14 @@ | ||
import EmptyStateBackgroundImage from '@assets/images/themeDependent/empty-state_background-fade-light.png'; | ||
import ExampleCheckEN from '@assets/images/themeDependent/example-check-image-light-en.png'; | ||
import ExampleCheckES from '@assets/images/themeDependent/example-check-image-light-es.png'; | ||
import WorkspaceProfile from '@assets/images/workspace-profile-light.png'; | ||
import type IllustrationsType from '@styles/theme/illustrations/types'; | ||
|
||
const illustrations = { | ||
EmptyStateBackgroundImage, | ||
ExampleCheckEN, | ||
ExampleCheckES, | ||
WorkspaceProfile, | ||
} satisfies IllustrationsType; | ||
|
||
export default illustrations; |
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