{
  "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=\"M9.1098 3C7.37905 3 5.87312 4.18447 5.46536 5.8665L2.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.535 5.8665C18.1272 4.18447 16.6213 3 14.8906 3H9.1098ZM17.2496 6.93098C17.2435 6.9592 17.2371 6.98744 17.2302 7.0157L15.0522 16H19.4481L17.2496 6.93098Z\" 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,gBAAqtB,EAArtB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ykBAAykB,KAAK,eAAc,CAAI,GAG/sB",
  "debugId": "DA4B96060CDB194864756E2164756E21",
  "names": []
}