Add missing t-shirt sizes to SizeProp type

This commit is contained in:
Dave Nuttall 2022-03-07 13:35:30 -07:00
parent 0078392516
commit 6d33b22e77

View File

@ -20,9 +20,12 @@ export function icon(icon: IconName | IconLookup, params?: IconParams): Icon;
export type IconProp = IconName | [IconPrefix, IconName] | IconLookup;
export type FlipProp = "horizontal" | "vertical" | "both";
export type SizeProp =
| "2xs"
| "xs"
| "lg"
| "sm"
| "lg"
| "xl"
| "2xl"
| "1x"
| "2x"
| "3x"