{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPushTheButton/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 IconPushTheButton: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPushTheButton\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.18867 7C6.42735 7.14372 6.80251 7.30342 7.32497 7.45269C8.47958 7.78258 10.1328 8 12 8C13.8672 8 15.5204 7.78258 16.675 7.45269C17.1975 7.30342 17.5726 7.14372 17.8113 7C17.5726 6.85628 17.1975 6.69658 16.675 6.54731C15.5204 6.21742 13.8672 6 12 6C10.1328 6 8.47958 6.21742 7.32497 6.54731C6.80251 6.69658 6.42735 6.85628 6.18867 7ZM18 9.1178C17.7541 9.21313 17.4938 9.29879 17.2245 9.37574C15.8456 9.76971 13.9988 10 12 10C10.0012 10 8.15442 9.76971 6.77553 9.37574C6.50622 9.29879 6.24587 9.21313 6 9.1178V13.8671C6.02402 13.888 6.05932 13.9157 6.10985 13.9498C6.34087 14.1059 6.74086 14.2858 7.32497 14.4527C8.47958 14.7826 10.1328 15 12 15C13.8672 15 15.5204 14.7826 16.675 14.4527C17.2591 14.2858 17.6591 14.1059 17.8901 13.9498C17.9407 13.9157 17.976 13.888 18 13.8671V9.1178ZM4 13.3697V7C4 6.21636 4.54781 5.69178 4.99033 5.39285C5.46776 5.07035 6.09289 4.8193 6.77553 4.62426C8.15442 4.23029 10.0012 4 12 4C13.9988 4 15.8456 4.23029 17.2245 4.62426C17.9071 4.8193 18.5322 5.07035 19.0097 5.39285C19.4522 5.69178 20 6.21636 20 7V13.3697C20.6748 13.6004 21.2724 13.8722 21.7486 14.1894C22.3529 14.5919 23 15.2338 23 16.1471C23 17.0491 22.3682 17.6865 21.7739 18.0879C21.1447 18.513 20.2999 18.8564 19.3458 19.129C17.424 19.6781 14.8272 20.0043 12 20.0043C9.1728 20.0043 6.576 19.6781 4.65421 19.129C3.70012 18.8564 2.85533 18.513 2.22609 18.0879C1.63175 17.6865 1 17.0491 1 16.1471C1 15.2338 1.64705 14.5919 2.25142 14.1894C2.72762 13.8722 3.32518 13.6004 4 13.3697ZM18.0386 6.8296C18.0424 6.8233 18.0455 6.82026 18.0455 6.82026C18.0455 6.82026 18.0439 6.82344 18.0386 6.8296ZM5.96144 6.8296C5.95611 6.82344 5.95454 6.82026 5.95454 6.82026C5.95454 6.82026 5.95757 6.8233 5.96144 6.8296Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPushTheButton;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA8zD,EAA9zD,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kqDAAkqD,KAAK,eAAc,CAAI,EACt0D,EAEc",
  "debugId": "955CB68B1247931E64756E2164756E21",
  "names": []
}