{
  "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=\"M12.6101 3.09208C12.8505 3.22366 13 3.47592 13 3.75V20.25C13 20.5241 12.8505 20.7763 12.6101 20.9079C12.3696 21.0395 12.0766 21.0294 11.8457 20.8817L5.78055 17H1.75C1.33579 17 1 16.6642 1 16.25V7.75C1 7.33579 1.33579 7 1.75 7H5.78055L11.8457 3.1183C12.0766 2.97055 12.3696 2.9605 12.6101 3.09208Z\" 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,gBAAg7B,EAAh7B,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,2SAA2S,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2gBAA2gB,KAAK,eAAc,CAAI,GAG16B",
  "debugId": "9D98BC943A3DD70664756E2164756E21",
  "names": []
}