{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOrganisation/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 IconOrganisation: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconOrganisation\"><Path d=\"M12 2C8.96243 2 6.5 4.46243 6.5 7.5C6.5 10.1961 8.43988 12.4391 11 12.9093V14.1449C9.87111 14.4809 8.98091 15.3711 8.64494 16.5H7.85506C7.42479 15.0543 6.08551 14 4.5 14C2.567 14 1 15.567 1 17.5C1 19.433 2.567 21 4.5 21C6.08551 21 7.42479 19.9457 7.85506 18.5H8.64494C9.07521 19.9457 10.4145 21 12 21C13.5855 21 14.9248 19.9457 15.3551 18.5H16.1449C16.5752 19.9457 17.9145 21 19.5 21C21.433 21 23 19.433 23 17.5C23 15.567 21.433 14 19.5 14C17.9145 14 16.5752 15.0543 16.1449 16.5H15.3551C15.0191 15.3711 14.1289 14.4809 13 14.1449V12.9093C15.5601 12.4391 17.5 10.1961 17.5 7.5C17.5 4.46243 15.0376 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconOrganisation;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAqtB,EAArtB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,gmBAAgmB,KAAK,eAAc,CAAI,EAC7tB,EAEc",
  "debugId": "7E9025ADC47A60E864756E2164756E21",
  "names": []
}