{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleBanSign/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 IconCircleBanSign: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"circle-ban-sign, circle, block, ads\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C14.7612 2 17.2625 3.11989 19.0713 4.92871C20.8801 6.73753 22 9.23878 22 12C22 17.5228 17.5228 22 12 22C9.23878 22 6.73753 20.8801 4.92871 19.0713C3.11989 17.2625 2 14.7612 2 12C2 6.47715 6.47715 2 12 2ZM6.54297 18.5166C8.01997 19.7548 9.92228 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 9.92228 19.7548 8.01997 18.5166 6.54297L6.54297 18.5166ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 14.0772 4.24473 15.9792 5.48242 17.4561L17.4561 5.48242C15.9792 4.24473 14.0772 3.5 12 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCircleBanSign;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA+nB,EAA/nB,IAAqB,EAAO,UAAU,uCAAsC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8eAA8e,KAAK,eAAc,CAAI,GAGznB",
  "debugId": "CD90C5B0E5ECE17664756E2164756E21",
  "names": []
}