{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDirection1/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 IconDirection1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"direction-1, route\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.25 3.75C11.25 3.33579 11.5858 3 12 3H19C19.2437 3 19.4722 3.1184 19.6127 3.31749L22.6127 7.56749C22.7958 7.82678 22.7958 8.17322 22.6127 8.43251L19.6127 12.6825C19.4722 12.8816 19.2437 13 19 13H12.75V20.25C12.75 20.6642 12.4142 21 12 21C11.5858 21 11.25 20.6642 11.25 20.25V17H5C4.75631 17 4.52781 16.8816 4.38727 16.6825L1.38727 12.4325C1.20424 12.1732 1.20424 11.8268 1.38727 11.5675L4.38727 7.31749C4.52781 7.1184 4.75631 7 5 7H11.25V3.75ZM12.75 11.5H18.6114L21.082 8L18.6114 4.5H12.75V11.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDirection1;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAqnB,EAArnB,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qfAAqf,KAAK,eAAc,CAAI,GAG/mB",
  "debugId": "E6A05C589CE3B1E564756E2164756E21",
  "names": []
}