fefactor: Extracting const variables to a separate file.

This commit is contained in:
aalizzwell 2022-10-14 18:04:52 +08:00 committed by Sagi
parent 927963c4a3
commit c2fd8b4971
2 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1 @@
export const groupIcon = '<span class="f-icon f-icon-arrow-60-down"></span>';

View File

@ -27,5 +27,4 @@ export function EnumType<T extends string | number>(defaultValue: T, enumType: R
validator: (value: T) => Object.values(enumType).includes(value),
type: [String, Number]
}
}
export const groupIcon = '<span class="f-icon f-icon-arrow-60-down"></span>';
}