{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleDashed/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 IconCircleDashed: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"circle-dashed\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.325 2.13978C10.8701 2.0478 11.4298 2 12 2C12.5702 2 13.1299 2.0478 13.675 2.13978C14.0834 2.2087 14.3587 2.59567 14.2897 3.00411C14.2208 3.41255 13.8338 3.68779 13.4254 3.61888C12.9624 3.54075 12.4863 3.5 12 3.5C11.5137 3.5 11.0376 3.54075 10.5746 3.61888C10.1662 3.68779 9.77918 3.41255 9.71026 3.00411C9.64134 2.59567 9.91658 2.2087 10.325 2.13978ZM7.25823 4.02089C7.49821 4.35851 7.41906 4.82674 7.08145 5.06672C6.30236 5.6205 5.6205 6.30236 5.06672 7.08145C4.82674 7.41906 4.35851 7.49821 4.02089 7.25823C3.68328 7.01825 3.60413 6.55002 3.84411 6.21241C4.49513 5.29651 5.29651 4.49513 6.21241 3.84411C6.55002 3.60413 7.01825 3.68328 7.25823 4.02089ZM16.7418 4.02089C16.9817 3.68328 17.45 3.60413 17.7876 3.84411C18.7035 4.49513 19.5049 5.29651 20.1559 6.21241C20.3959 6.55002 20.3167 7.01825 19.9791 7.25823C19.6415 7.49821 19.1733 7.41906 18.9333 7.08145C18.3795 6.30236 17.6976 5.6205 16.9186 5.06672C16.5809 4.82674 16.5018 4.35851 16.7418 4.02089ZM3.00411 9.71026C3.41255 9.77918 3.68779 10.1662 3.61888 10.5746C3.54075 11.0376 3.5 11.5137 3.5 12C3.5 12.4863 3.54075 12.9624 3.61888 13.4254C3.68779 13.8338 3.41255 14.2208 3.00411 14.2897C2.59567 14.3587 2.2087 14.0834 2.13978 13.675C2.0478 13.1299 2 12.5702 2 12C2 11.4298 2.0478 10.8701 2.13978 10.325C2.2087 9.91658 2.59567 9.64134 3.00411 9.71026ZM20.9959 9.71026C21.4043 9.64134 21.7913 9.91658 21.8602 10.325C21.9522 10.8701 22 11.4298 22 12C22 12.5702 21.9522 13.1299 21.8602 13.675C21.7913 14.0834 21.4043 14.3587 20.9959 14.2897C20.5874 14.2208 20.3122 13.8338 20.3811 13.4254C20.4592 12.9624 20.5 12.4863 20.5 12C20.5 11.5137 20.4592 11.0376 20.3811 10.5746C20.3122 10.1662 20.5874 9.77918 20.9959 9.71026ZM4.02089 16.7418C4.35851 16.5018 4.82674 16.5809 5.06672 16.9186C5.6205 17.6976 6.30236 18.3795 7.08145 18.9333C7.41906 19.1733 7.49821 19.6415 7.25823 19.9791C7.01825 20.3167 6.55002 20.3959 6.21241 20.1559C5.29651 19.5049 4.49513 18.7035 3.84411 17.7876C3.60413 17.45 3.68328 16.9817 4.02089 16.7418ZM19.9791 16.7418C20.3167 16.9817 20.3959 17.45 20.1559 17.7876C19.5049 18.7035 18.7035 19.5049 17.7876 20.1559C17.45 20.3959 16.9817 20.3167 16.7418 19.9791C16.5018 19.6415 16.5809 19.1733 16.9186 18.9333C17.6976 18.3795 18.3795 17.6976 18.9333 16.9186C19.1733 16.5809 19.6415 16.5018 19.9791 16.7418ZM9.71026 20.9959C9.77918 20.5874 10.1662 20.3122 10.5746 20.3811C11.0376 20.4592 11.5137 20.5 12 20.5C12.4863 20.5 12.9624 20.4592 13.4254 20.3811C13.8338 20.3122 14.2208 20.5874 14.2897 20.9959C14.3587 21.4043 14.0834 21.7913 13.675 21.8602C13.1299 21.9522 12.5702 22 12 22C11.4298 22 10.8701 21.9522 10.325 21.8602C9.91658 21.7913 9.64134 21.4043 9.71026 20.9959Z\" fill=\"currentColor\"/><path d=\"M18.5 12C18.5 15.5899 15.5899 18.5 12 18.5C8.41015 18.5 5.5 15.5899 5.5 12C5.5 8.41015 8.41015 5.5 12 5.5C15.5899 5.5 18.5 8.41015 18.5 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCircleDashed;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAg4F,EAAh4F,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0lFAA0lF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,CAAI,GAG13F",
  "debugId": "F197AFE9D7A5D40364756E2164756E21",
  "names": []
}