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

6 lines
183 B
TypeScript
Raw Normal View History

import { defaultStore } from "@/store";
export default function icon(name: string, large = true): string {
return `${name} ${large ? "ph-lg" : ""} ${defaultStore.state.iconSet}`;
}