{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWarningSign/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 IconWarningSign: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"warning-sign,attention,coution\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.53671 3C6.72903 3 6.02627 3.55276 5.83598 4.3377L2.02129 20.0733C1.9237 20.4759 2.17092 20.8813 2.57347 20.9789C2.97603 21.0765 3.38147 20.8293 3.47906 20.4267L4.18856 17.5H13.1451L12.5213 20.0733C12.4237 20.4759 12.6709 20.8813 13.0735 20.9789C13.476 21.0765 13.8815 20.8293 13.9791 20.4267L14.6886 17.5H19.8118L20.5213 20.4267C20.6189 20.8293 21.0243 21.0765 21.4269 20.9789C21.8294 20.8813 22.0767 20.4759 21.9791 20.0733L18.1644 4.3377C17.9741 3.55275 17.2713 3 16.4636 3H7.53671ZM17.2502 6.93336L15.0522 16H19.4481L17.2502 6.93336Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWarningSign;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA0qB,EAA1qB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,GAGpqB",
  "debugId": "537CB76B7670B61564756E2164756E21",
  "names": []
}