feat(Focusable): add noFocusRing prop type (#65)

This commit is contained in:
Jozen Blue Martinez
2022-12-11 22:18:07 +08:00
committed by GitHub
parent 1e8979b641
commit cc29ddaf57

View File

@@ -8,6 +8,7 @@ export interface FocusableProps extends HTMLAttributes<HTMLDivElement>, FooterLe
'flow-children'?: string;
focusClassName?: string;
focusWithinClassName?: string;
noFocusRing?: boolean;
onActivate?: (e: CustomEvent) => void;
onCancel?: (e: CustomEvent) => void;
}