{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVolumeOff/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 IconVolumeOff: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"volume-off, sound-off\"><path d=\"M10.1568 3.46416C11.3026 2.54749 13 3.36329 13 4.83068V19.1694C13 20.6368 11.3026 21.4526 10.1568 20.5359L6.07931 17.274C5.85767 17.0967 5.58228 17.0001 5.29844 17.0001H3.75C2.23122 17.0001 1 15.7688 1 14.2501V9.75005C1 8.23127 2.23122 7.00005 3.75 7.00005H5.29844C5.58228 7.00005 5.85767 6.90345 6.07931 6.72614L10.1568 3.46416Z\" fill=\"currentColor\"/><path d=\"M22.0303 10.5304C22.3232 10.2375 22.3232 9.76266 22.0303 9.46977C21.7374 9.17687 21.2625 9.17687 20.9697 9.46977L19.3787 11.0608L17.7877 9.46977C17.4948 9.17687 17.0199 9.17687 16.727 9.46977C16.4341 9.76266 16.4341 10.2375 16.727 10.5304L18.318 12.1214L16.727 13.7124C16.4341 14.0053 16.4341 14.4802 16.727 14.7731C17.0199 15.066 17.4948 15.066 17.7877 14.7731L19.3787 13.1821L20.9697 14.7731C21.2625 15.066 21.7374 15.066 22.0303 14.7731C22.3232 14.4802 22.3232 14.0053 22.0303 13.7124L20.4393 12.1214L22.0303 10.5304Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVolumeOff;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAi9B,EAAj9B,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,4UAA4U,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2gBAA2gB,KAAK,eAAc,CAAI,GAG38B",
  "debugId": "BF1B833F484FDEA764756E2164756E21",
  "names": []
}