{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVolumeUp/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 IconVolumeUp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"volume-up\"><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.84216 17.0394C5.80193 17.0137 5.75516 17 5.7074 17H2.75C1.7835 17 1 16.2165 1 15.25V8.75C1 7.7835 1.7835 7 2.75 7H5.7074C5.75516 7 5.80193 6.98632 5.84216 6.96057L11.8457 3.1183C12.0766 2.97055 12.3696 2.9605 12.6101 3.09208Z\" fill=\"currentColor\"/><path d=\"M19.75 8.75C19.75 8.33579 19.4142 8 19 8C18.5858 8 18.25 8.33579 18.25 8.75V11.25H15.75C15.3358 11.25 15 11.5858 15 12C15 12.4142 15.3358 12.75 15.75 12.75H18.25V15.25C18.25 15.6642 18.5858 16 19 16C19.4142 16 19.75 15.6642 19.75 15.25V12.75H22.25C22.6642 12.75 23 12.4142 23 12C23 11.5858 22.6642 11.25 22.25 11.25H19.75V8.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVolumeUp;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAmzB,EAAnzB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,2XAA2X,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0UAA0U,KAAK,eAAc,CAAI,GAG7yB",
  "debugId": "61DB7256A304C30964756E2164756E21",
  "names": []
}