From cc29ddaf578e21ab2abe1cd266f1d15debee0637 Mon Sep 17 00:00:00 2001 From: Jozen Blue Martinez Date: Sun, 11 Dec 2022 22:18:07 +0800 Subject: [PATCH] feat(Focusable): add noFocusRing prop type (#65) --- src/deck-components/Focusable.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/deck-components/Focusable.tsx b/src/deck-components/Focusable.tsx index eb49d97..3ec8445 100644 --- a/src/deck-components/Focusable.tsx +++ b/src/deck-components/Focusable.tsx @@ -8,6 +8,7 @@ export interface FocusableProps extends HTMLAttributes, FooterLe 'flow-children'?: string; focusClassName?: string; focusWithinClassName?: string; + noFocusRing?: boolean; onActivate?: (e: CustomEvent) => void; onCancel?: (e: CustomEvent) => void; }