{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFormFlower/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 IconFormFlower: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconFormFlower\"><Path d=\"M12 2C12.9995 2 13.8839 3.62935 14.4291 6.13446C16.5861 4.74838 18.3646 4.22189 19.0713 4.92866C19.7781 5.63542 19.2505 7.41296 17.8645 9.5699C20.3703 10.1151 22 11.0004 22 12C22 12.9996 20.3702 13.8839 17.8645 14.4291C19.2508 16.5864 19.7781 18.3645 19.0713 19.0713C18.3645 19.7782 16.5864 19.2508 14.4291 17.8645C13.8839 20.3702 12.9996 22 12 22C11.0004 22 10.1151 20.3703 9.5699 17.8645C7.41294 19.2505 5.63542 19.7781 4.92866 19.0713C4.22188 18.3646 4.74836 16.5862 6.13446 14.4291C3.62935 13.8839 2 12.9995 2 12C2 11.0005 3.62923 10.1151 6.13446 9.5699C4.74873 7.41316 4.22197 5.63535 4.92866 4.92866C5.63536 4.22199 7.41317 4.74874 9.5699 6.13446C10.1151 3.62923 11.0005 2 12 2Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFormFlower;\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,gBAAsyB,EAAtyB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,+qBAA+qB,OAAO,eAAc,CAAI,EAC9yB,EAEc",
  "debugId": "F86E5FFD6006405964756E2164756E21",
  "names": []
}