{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStrikeThrough/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 IconStrikeThrough: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"strike-through\"><path d=\"M12.0019 2C9.7738 2 8.15863 2.72993 7.09972 3.80414C6.05409 4.86489 5.59912 6.21385 5.59912 7.375C5.59912 8.25583 5.8043 9.01078 6.18857 9.65233C6.57011 10.2893 7.10423 10.7748 7.70509 11.1572C7.7546 11.1887 7.80475 11.2197 7.8555 11.25H2.75C2.33579 11.25 2 11.5858 2 12C2 12.4142 2.33579 12.75 2.75 12.75H21.25C21.6642 12.75 22 12.4142 22 12C22 11.5858 21.6642 11.25 21.25 11.25H12.2261C12.2159 11.2468 12.2057 11.2439 12.1953 11.2411C10.7446 10.8539 9.45191 10.491 8.51054 9.89181C8.05411 9.60129 7.70887 9.27137 7.47539 8.88156C7.24464 8.49631 7.09912 8.01299 7.09912 7.375C7.09912 6.58456 7.41499 5.62102 8.16796 4.85717C8.90766 4.10678 10.1189 3.5 12.0019 3.5C13.9503 3.5 15.0789 4.15286 15.7545 4.86854C16.4518 5.60719 16.7338 6.48565 16.8438 7.01392C16.9282 7.41945 17.3253 7.67977 17.7309 7.59538C18.1364 7.51098 18.3967 7.11383 18.3123 6.7083C18.1715 6.03163 17.8041 4.85454 16.8453 3.83886C15.8648 2.80022 14.3307 2 12.0019 2Z\" fill=\"currentColor\"/><path d=\"M18.0836 14.3669C17.8728 14.0103 17.4128 13.8922 17.0563 14.103C16.6997 14.3139 16.5816 14.7738 16.7924 15.1304C17.0189 15.5134 17.1616 15.9933 17.1616 16.625C17.1616 18.1243 15.7379 20.5 12.0019 20.5C10.0526 20.5 8.82589 19.8452 8.04163 19.1019C7.23971 18.3419 6.85328 17.4429 6.68343 16.9108C6.55747 16.5162 6.13547 16.2984 5.74087 16.4244C5.34628 16.5504 5.12851 16.9724 5.25447 17.367C5.46927 18.0399 5.96069 19.1964 7.00978 20.1907C8.07652 21.2017 9.67398 22 12.0019 22C16.4881 22 18.6616 19.0289 18.6616 16.625C18.6616 15.7532 18.4606 15.0045 18.0836 14.3669Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStrikeThrough;\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,gBAAslD,EAAtlD,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,EAAE,26BAA26B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wjBAAwjB,KAAK,eAAc,CAAI,GAGhlD",
  "debugId": "EB5A654FBE6A468364756E2164756E21",
  "names": []
}