2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-26 00:28:28 +00:00

Fix roate allow rotation to be string

This commit is contained in:
Nghiệp 2021-08-16 08:50:00 +07:00
parent f1b840918c
commit aaa0f5dfdf

View File

@ -8,7 +8,7 @@ export { RawIconCustomisations };
/**
* Icon customisations
*/
export type IconifyIconCustomisations = RawIconCustomisations & {
export type IconifyIconCustomisations = Omit<RawIconCustomisations, "rotate"> & {
rotate?: string | number;
};