{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDistortion/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 IconDistortion: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDistortion\"><Path d=\"M3 12.5293C4.80073 11.3549 6.22283 11.1152 7.44434 11.2617C8.54038 11.3933 9.55169 11.8412 10.6455 12.4121C10.0355 13.5771 9.44896 14.8713 9.27539 16.3184C9.10115 17.7718 9.34514 19.3088 10.2168 21H3V12.5293Z\" fill=\"currentColor\"/><Path d=\"M12.4121 13.3535C13.5772 13.9636 14.8711 14.551 16.3184 14.7246C17.7718 14.8989 19.3088 14.6549 21 13.7832V21H12.5293C11.3549 19.1993 11.1152 17.7772 11.2617 16.5557C11.3933 15.4594 11.841 14.4476 12.4121 13.3535Z\" fill=\"currentColor\"/><Path d=\"M21 11.4697C19.1991 12.6443 17.7773 12.8848 16.5557 12.7383C15.4592 12.6067 14.4478 12.1581 13.3535 11.5869C13.9634 10.422 14.5511 9.12858 14.7246 7.68164C14.8988 6.22819 14.6548 4.69121 13.7832 3H21V11.4697Z\" fill=\"currentColor\"/><Path d=\"M11.4707 3C12.6451 4.80073 12.8848 6.22283 12.7383 7.44434C12.6067 8.54052 12.1579 9.55153 11.5869 10.6455C10.4222 10.0357 9.12842 9.44892 7.68164 9.27539C6.2283 9.10117 4.69106 9.34434 3 10.2158V3H11.4707Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDistortion;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAyhC,EAAzhC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wNAAwN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,CAAI,EACjiC,EAEc",
  "debugId": "3B51EE31D5BC1BB564756E2164756E21",
  "names": []
}