{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVolumeUp/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconVolumeUp: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconVolumeUp\"><Path d=\"M1.5 7.5V7H1V7.5H1.5ZM6 7.5V8H6.13389L6.24986 7.93309L6 7.5ZM12.5 3.75H13V2.88429L12.2501 3.31691L12.5 3.75ZM12.5 20.25L12.2501 20.6831L13 21.1157V20.25H12.5ZM6 16.5L6.24986 16.0669L6.13389 16H6V16.5ZM1.5 16.5H1V17H1.5V16.5ZM19.5 8.5V8H18.5V8.5H19.5ZM18.5 15.5V16H19.5V15.5H18.5ZM15.5 11.5H15V12.5H15.5V11.5ZM22.5 12.5H23V11.5H22.5V12.5ZM1.5 8H6V7H1.5V8ZM6.24986 7.93309L12.7499 4.18309L12.2501 3.31691L5.75014 7.06691L6.24986 7.93309ZM12 3.75V20.25H13V3.75H12ZM12.7499 19.8169L6.24986 16.0669L5.75014 16.9331L12.2501 20.6831L12.7499 19.8169ZM6 16H1.5V17H6V16ZM2 16.5V7.5H1V16.5H2ZM18.5 8.5V12H19.5V8.5H18.5ZM18.5 12V15.5H19.5V12H18.5ZM15.5 12.5H19V11.5H15.5V12.5ZM19 12.5H22.5V11.5H19V12.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVolumeUp;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAyyB,EAAzyB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,srBAAsrB,KAAK,eAAc,CAAI,EACjzB,EAEc",
  "debugId": "95028C972659CDD764756E2164756E21",
  "names": []
}