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