UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

8 lines (7 loc) 284 B
//#region src/Token/utils.ts const isTokenInteractive = ({ as = "span", onClick, onFocus, tabIndex = -1, disabled }) => { if (disabled) return false; return Boolean(onFocus || onClick || tabIndex > -1 || ["a", "button"].includes(as)); }; //#endregion export { isTokenInteractive };