JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
import {isMac} from '@react-aria/utils'; interface Event { altKey: boolean; ctrlKey: boolean; metaKey: boolean; } export function isCtrlKeyPressed(e: Event) { if (isMac()) { return e.metaKey; } return e.ctrlKey; }