{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWhiteboard/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 IconWhiteboard: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWhiteboard\"><Path d=\"M12.1704 6.55338L12.1734 6.5507L12.1928 6.53364C12.2109 6.51772 12.2394 6.49308 12.2771 6.46127C12.3525 6.39755 12.4641 6.30577 12.6032 6.19836C12.8844 5.98134 13.2645 5.71102 13.677 5.47941C14.0995 5.24221 14.5007 5.07733 14.8321 5.02085C15.1537 4.96603 15.2958 5.02807 15.372 5.08957C15.5464 5.23036 15.5868 5.32103 15.5957 5.34521C15.6018 5.36205 15.6105 5.39087 15.5915 5.46481C15.5381 5.67335 15.3339 5.98801 14.9206 6.42958C14.7325 6.6306 14.5302 6.82856 14.3183 7.03601L14.303 7.05097C14.0938 7.25568 13.8676 7.4773 13.6741 7.69142C13.4888 7.89639 13.2753 8.15638 13.1343 8.44699C12.9922 8.74004 12.845 9.23761 13.1056 9.75865C13.3212 10.1898 13.692 10.4167 14.042 10.5148C14.3565 10.603 14.6757 10.5962 14.9242 10.5745C15.2736 10.544 15.7081 10.4562 16.1008 10.3768C16.2412 10.3484 16.3765 10.321 16.5004 10.2978C17.037 10.1973 17.5153 10.1366 17.9285 10.1712C18.3227 10.2043 18.5926 10.318 18.7929 10.5183C19.0026 10.728 19.075 10.9753 19.0205 11.3961C18.9713 11.7766 18.8412 12.1526 18.6857 12.6018C18.6425 12.7266 18.5973 12.8572 18.5513 12.995L18.2351 13.9437L20.1325 14.5761L20.4487 13.6274C20.4762 13.5449 20.5085 13.4526 20.5435 13.3525C20.7053 12.8897 20.9254 12.2603 21.004 11.6526C21.1081 10.848 20.9974 9.8944 20.2071 9.10411C19.579 8.47601 18.8097 8.23804 18.0954 8.17822C17.4001 8.12 16.7008 8.22545 16.132 8.33202C16.0077 8.35532 15.8923 8.37793 15.7845 8.39945C15.9737 8.21416 16.1819 8.00875 16.3808 7.79626C16.8095 7.3383 17.3388 6.70318 17.5289 5.96132C17.6317 5.56006 17.6397 5.11353 17.475 4.66107C17.313 4.21596 17.0124 3.84339 16.628 3.53319C15.9542 2.98943 15.1588 2.93632 14.4961 3.04927C13.8431 3.16055 13.213 3.44633 12.698 3.73544C12.173 4.03015 11.7094 4.36181 11.3811 4.61519C11.2156 4.74298 11.0811 4.8535 10.9866 4.93328C10.9393 4.97323 10.9019 5.00563 10.8754 5.02884L10.8439 5.05658L10.8346 5.06493L10.8315 5.06765L10.8304 5.06864C10.8302 5.06882 10.8296 5.06938 11.4699 5.7781L10.8296 5.06939L10.0876 5.73979L11.4284 7.22378L12.1696 6.55413L12.1704 6.55338Z\" fill=\"currentColor\"/><Path d=\"M7.5 7.50009C5.01472 7.50009 3 9.51481 3 12.0001C3 14.4854 5.01472 16.5001 7.5 16.5001C9.98528 16.5001 12 14.4854 12 12.0001C12 9.51481 9.98528 7.50009 7.5 7.50009Z\" fill=\"currentColor\"/><Path d=\"M15 11.895L9.17273 21.0001H20.8273L15 11.895Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWhiteboard;\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,gBAAs1E,EAAt1E,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,k9DAAk9D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uKAAuK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gDAAgD,KAAK,eAAc,CAAI,EAC91E,EAEc",
  "debugId": "656E03FFB399828D64756E2164756E21",
  "names": []
}