From c53f87b4a9273b377853bfff1d27474ebd6e564a Mon Sep 17 00:00:00 2001 From: Jozen Blue Martinez Date: Thu, 29 Dec 2022 15:36:08 +0800 Subject: [PATCH] fix(Item): add highlightOnFocus prop --- src/deck-components/Item.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/deck-components/Item.tsx b/src/deck-components/Item.tsx index a101d80..2861edc 100644 --- a/src/deck-components/Item.tsx +++ b/src/deck-components/Item.tsx @@ -8,4 +8,5 @@ export interface ItemProps { bottomSeparator?: 'standard' | 'thick' | 'none'; indentLevel?: number; tooltip?: string; + highlightOnFocus?: boolean; }