{"version":3,"file":"keystroke-shift.mjs","names":[],"sources":["../../src/react/keystroke-shift.tsx"],"sourcesContent":["import { useId, type SVGProps } from 'react';\n\nexport type KeystrokeShiftIconProps = SVGProps<SVGSVGElement> & {\n  /** Accessibility title for the icon, set aria-hidden=\"true\" if the icon is purely decorative. */\n  title?: string;\n  /**\n   * The size of the icon.\n   * It sets the font-size, possible as the width and height is `1em`. If not set, the icon will inherit the font size of its parent.\n   */\n  size?: '2xl' | 'xl' | 'large' | 'medium' | 'small';\n  /**\n   * The color of the icon.\n   * @default 'inherit'\n   */\n  color?: 'inherit' | 'primary' | 'gray' | 'black' | 'white';\n};\n\nexport const KeystrokeShiftIcon = ({ title, size, color, ...props }: KeystrokeShiftIconProps) => {\n  const titleId = useId();\n  return (\n    <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 24 24\" focusable='false' role='img' width='1em' height='1em'  aria-labelledby={title ? titleId : undefined} data-size={size} data-color={color} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path d=\"M20.747 12.15 12.56 4.23a.813.813 0 0 0-1.136 0l-8.187 7.92a.735.735 0 0 0-.173.842c.126.291.41.475.741.475h2.43l.14 5.752c0 .429.362.781.804.781H17.1a.797.797 0 0 0 .805-.781l-.14-5.752h2.429a.81.81 0 0 0 .741-.475.735.735 0 0 0-.173-.842h-.016Zm-13.708-.215h-1.31l6.263-6.066 6.263 6.066h-1.31c-.441 0-.804.353-.804.766l.14 5.752H7.968l-.14-5.752c0-.429-.363-.766-.805-.766z\" /></svg>\n  );\n};"],"mappings":";;;AAiBA,MAAa,sBAAsB,EAAE,OAAO,MAAM,OAAO,GAAG,YAAqC;CAC/F,MAAM,UAAU,OAAO;CACvB,OACE,qBAAC,OAAD;EAAK,OAAM;EAA6B,MAAK;EAAe,SAAQ;EAAY,WAAU;EAAQ,MAAK;EAAM,OAAM;EAAM,QAAO;EAAO,mBAAiB,QAAQ,UAAU,KAAA;EAAW,aAAW;EAAM,cAAY;EAAO,GAAI;YAA7N,CAAqO,QAAQ,oBAAC,SAAD;GAAO,IAAI;aAAU;GAAc,CAAA,GAAG,MAAK,oBAAC,QAAD,EAAM,GAAE,4XAA6X,CAAA,CAAM"}