From 4171b3c03b4abda5b9b5069296ad125dfda84192 Mon Sep 17 00:00:00 2001 From: Suraj Ahmed Date: Mon, 11 Apr 2022 19:24:22 +0530 Subject: [PATCH] feat: added pseudo prop _important --- src/components/types/PlatformProps.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/types/PlatformProps.ts b/src/components/types/PlatformProps.ts index ba1857f37..e65fcae9d 100644 --- a/src/components/types/PlatformProps.ts +++ b/src/components/types/PlatformProps.ts @@ -20,4 +20,8 @@ export interface PlatformProps { * Props only for dark mode */ _dark?: Partial; + /** + * Props with highest specificity + */ + _important?: Partial; }