{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowTriangleBottom/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 IconArrowTriangleBottom: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-triangle-bottom\"><path d=\"M4.07918 5.08541C3.96293 4.85292 3.97536 4.57681 4.11201 4.3557C4.24867 4.13459 4.49007 4 4.75 4H19.25C19.5099 4 19.7513 4.13459 19.888 4.3557C20.0246 4.57681 20.0371 4.85292 19.9208 5.08541L12.6708 19.5854C12.5438 19.8395 12.2841 20 12 20C11.7159 20 11.4562 19.8395 11.3292 19.5854L4.07918 5.08541Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowTriangleBottom;\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,EAA0D,CAAC,IAAU,CAChF,OAAO,gBAA2Y,EAA3Y,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,CAAI,GAGrY",
  "debugId": "319FD6CD18FC48AC64756E2164756E21",
  "names": []
}