Update TS definition to include IconDefinition as an option to IconProp

This commit is contained in:
Nathan Brown 2020-01-19 14:54:14 -07:00 committed by GitHub
parent d8db3d032d
commit cc9752bdc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ export function layer(
params?: LayerParams
): Layer;
export function icon(icon: IconName | IconLookup, params?: IconParams): Icon;
export type IconProp = IconName | [IconPrefix, IconName] | IconLookup;
export type IconProp = IconName | [IconPrefix, IconName] | IconLookup | IconDefinition;
export type FlipProp = "horizontal" | "vertical" | "both";
export type SizeProp =
| "xs"