2
0
mirror of https://github.com/iconify/iconify.git synced 2024-12-12 21:57:50 +00:00

chore: undo handle scale, should be done from outside

This commit is contained in:
Joaquín Sánchez Jiménez 2022-02-26 16:44:24 +01:00
parent 308c26c774
commit bb285192a2
3 changed files with 1 additions and 7 deletions

View File

@ -41,7 +41,6 @@ export async function getCustomIcon(
collection, collection,
icon, icon,
additionalProps, additionalProps,
options?.scale ?? 1.2,
undefined, undefined,
iconCustomizer, iconCustomizer,
); );

View File

@ -37,7 +37,6 @@ export async function searchForIcon(
collection, collection,
id, id,
additionalProps, additionalProps,
options?.scale ?? 1.2,
() => attributes, () => attributes,
iconCustomizer iconCustomizer
); );

View File

@ -8,14 +8,10 @@ export async function mergeIconProps(
collection: string, collection: string,
icon: string, icon: string,
additionalProps: Record<string, string | undefined>, additionalProps: Record<string, string | undefined>,
scale: number,
propsProvider?: () => Awaitable<Record<string, string>>, propsProvider?: () => Awaitable<Record<string, string>>,
iconCustomizer?: IconCustomizer, iconCustomizer?: IconCustomizer,
): Promise<string> { ): Promise<string> {
const props: Record<string, string> = (await propsProvider?.()) ?? { const props: Record<string, string> = (await propsProvider?.()) ?? {};
height: `${scale ?? 1}em`,
width: `${scale ?? 1}em`,
};
await iconCustomizer?.(collection, icon, props); await iconCustomizer?.(collection, icon, props);
Object.keys(additionalProps).forEach((p) => { Object.keys(additionalProps).forEach((p) => {
const v = additionalProps[p]; const v = additionalProps[p];