From eca3423d21206301e09230becf5b337a2429906d Mon Sep 17 00:00:00 2001 From: Eduardo D'Angelo Date: Wed, 22 Aug 2018 11:45:35 +0100 Subject: [PATCH] Added "none" to supported display values --- types/styled-system/dist/styles.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/styled-system/dist/styles.d.ts b/types/styled-system/dist/styles.d.ts index 57f470e96a..7c666f9a9d 100644 --- a/types/styled-system/dist/styles.d.ts +++ b/types/styled-system/dist/styles.d.ts @@ -110,6 +110,7 @@ export function letterSpacing(...args: any[]): any; */ export type DisplayValue = + | "none" | "inline" | "block" | "contents"