hippofish/packages/client/src/scripts/icon.ts

6 lines
179 B
TypeScript
Raw Normal View History

import { defaultStore } from "@/store";
2023-10-19 00:28:20 +02:00
export default function (name: string, large = true): string {
return `${name} ${large ? "ph-lg" : ""} ${defaultStore.state.iconSet}`;
}