{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShift/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShift: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shift\"><path d=\"M12.5496 2.23966C12.4077 2.08684 12.2086 2 12 2C11.7915 2 11.5923 2.08684 11.4504 2.23966L1.70042 12.7397C1.49744 12.9583 1.4433 13.2764 1.56254 13.5498C1.68177 13.8232 1.95172 14 2.25002 14H6.11844V20.25C6.11844 20.6642 6.45422 21 6.86844 21H17.1316C17.5458 21 17.8816 20.6642 17.8816 20.25V14H21.75C22.0483 14 22.3183 13.8232 22.4375 13.5498C22.5567 13.2764 22.5026 12.9583 22.2996 12.7397L12.5496 2.23966Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShift;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAwe,EAAxe,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,2ZAA2Z,KAAK,eAAc,CAAI,GAGle",
  "debugId": "2F971250DFA0319864756E2164756E21",
  "names": []
}