Skip to content

Commit

Permalink
feat: update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Oct 4, 2024
1 parent 8bc4771 commit e474bbf
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions apps/renderer/src/modules/entry-content/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ const ElectronAdditionActions = window.electron
name: t("entry_content.header.readability"),
className: cn(
isInReadability(entryReadabilityStatus)
? `i-mgc-sparkles-2-filled`
: `i-mgc-sparkles-2-cute-re`,
? `i-mgc-docment-cute-fi`
: `i-mgc-docment-cute-re`,
entryReadabilityStatus === ReadabilityStatus.WAITING ? `animate-pulse` : "",
),
key: "readability",
Expand Down
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/entry-content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const ReadabilityContent = ({ entryId }: { entryId: string }) => {
</p>
) : (
<div className="center mt-16 flex flex-col gap-2">
<LoadingWithIcon size="large" icon={<i className="i-mgc-sparkles-2-cute-re" />} />
<LoadingWithIcon size="large" icon={<i className="i-mgc-docment-cute-re" />} />
<span className="text-sm">{t("entry_content.fetching_content")}</span>
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/entry-content/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { getUrlIcon } from "~/lib/utils"

export const EntryContentLoading = (props: { icon?: string }) => {
if (!props.icon) {
return <LoadingWithIcon size="large" icon={<i className="i-mgc-sparkles-2-cute-re" />} />
return <LoadingWithIcon size="large" icon={<i className="i-mgc-docment-cute-re" />} />
}
return (
<div className="center mb-14 flex flex-col gap-4">
Expand Down
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/settings/tabs/invitations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const SettingInvitations = () => {
})
}}
>
<i className="i-mgc-heart-hand-cute-re mr-1 text-base" />
<i className="i-mgc-love-cute-re mr-1 text-base" />
{t("invitation.generateButton")}
</Button>
<Divider className="mb-6 mt-8" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SettingInvitations } from "~/modules/settings/tabs/invitations"
import { SettingsTitle } from "~/modules/settings/title"
import { defineSettingPageData } from "~/modules/settings/utils"

const iconName = "i-mgc-heart-hand-cute-re"
const iconName = "i-mgc-love-cute-re"
const priority = 1070

export const loader = defineSettingPageData({
Expand Down
1 change: 1 addition & 0 deletions icons/mgc/docment_cute_fi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/mgc/docment_cute_re.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion icons/mgc/heart_hand_cute_re.svg

This file was deleted.

1 change: 1 addition & 0 deletions icons/mgc/love_cute_re.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion icons/mgc/sparkles_2_cute_re.svg

This file was deleted.

1 change: 0 additions & 1 deletion icons/mgc/sparkles_2_filled.svg

This file was deleted.

3 changes: 1 addition & 2 deletions packages/shared/src/hono.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4257,12 +4257,11 @@ declare const _routes: hono_hono_base.HonoBase<Env, {
json: {
date: string;
from: {
address: string;
name?: string | undefined;
address?: string | undefined;
};
to: {
address: string;
name?: string | undefined;
};
messageId: string;
subject?: string | undefined;
Expand Down

0 comments on commit e474bbf

Please sign in to comment.