{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUntrash/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 IconUntrash: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconUntrash\"><Path d=\"M5.49997 21.5L5.00101 21.5322L5.03119 22H5.49997V21.5ZM18.5 21.5V22H18.9688L18.9989 21.5322L18.5 21.5ZM19.9989 6.03219L20.0311 5.53323L19.0332 5.46885L19.001 5.96781L19.9989 6.03219ZM5.49997 21.5V22H18.5V21.5V21H5.49997V21.5ZM18.5 21.5L18.9989 21.5322L19.9989 6.03219L19.5 6L19.001 5.96781L18.001 21.4678L18.5 21.5ZM4.53223 6.5L4.03326 6.53219L5.00101 21.5322L5.49997 21.5L5.99893 21.4678L5.03119 6.46781L4.53223 6.5Z\" fill=\"currentColor\"/><Path d=\"M3.479 2.95508L21.2055 6.08075\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M8.95768 3.8364C9.51849 2.2542 11.1554 1.26183 12.8635 1.563C14.5715 1.86418 15.7703 3.35657 15.7562 5.03516\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12 17V10.5\" stroke=\"currentColor\"/><Path d=\"M9 13L12 10L15 13\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUntrash;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAk3B,EAAl3B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,oaAAoa,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iCAAiC,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,+GAA+G,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAc,CAAI,EAC13B,EAEc",
  "debugId": "050E23925C89164564756E2164756E21",
  "names": []
}