You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
1008 B
12 lines
1008 B
export type CreateTabIconName = "all" | "image" | "video" | "voice" | "template" | "character" | "background" | "characterAssets";
|
|
|
|
export const CREATE_TAB_ICON_SRC: Record<CreateTabIconName, string> = {
|
|
all: new URL("/src/assets/images/create/tabs/create_tab_all.png", import.meta.url).href,
|
|
image: new URL("/src/assets/images/create/tabs/create_tab_image.png", import.meta.url).href,
|
|
video: new URL("/src/assets/images/create/tabs/create_tab_video.png", import.meta.url).href,
|
|
voice: new URL("/src/assets/images/create/tabs/create_tab_voice.png", import.meta.url).href,
|
|
template: new URL("/src/assets/images/create/tabs/create_tab_template.png", import.meta.url).href,
|
|
character: new URL("/src/assets/images/create/tabs/create_tab_character.png", import.meta.url).href,
|
|
background: new URL("/src/assets/images/create/tabs/create_tab_background.png", import.meta.url).href,
|
|
characterAssets: new URL("/src/assets/images/create/tabs/create_tab_character_assets.png", import.meta.url).href,
|
|
};
|
|
|