{
  "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=\"M6.02129 3.5733C6.10284 3.23689 6.40402 3 6.75017 3H17.2502C17.5963 3 17.8975 3.23689 17.9791 3.5733L21.9791 20.0733C22.0767 20.4759 21.8294 20.8813 21.4269 20.9789C21.0243 21.0765 20.6189 20.8293 20.5213 20.4267L19.8118 17.5H14.6886L13.9791 20.4267C13.8815 20.8293 13.476 21.0765 13.0735 20.9789C12.6709 20.8813 12.4237 20.4759 12.5213 20.0733L13.1451 17.5H4.18856L3.47906 20.4267C3.38147 20.8293 2.97603 21.0765 2.57347 20.9789C2.17092 20.8813 1.9237 20.4759 2.02129 20.0733L6.02129 3.5733ZM17.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,gBAA+qB,EAA/qB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,miBAAmiB,KAAK,eAAc,CAAI,GAGzqB",
  "debugId": "FEE4D43FD1F3F1F964756E2164756E21",
  "names": []
}