{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMakeItPop/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 IconMakeItPop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconMakeItPop\"><Path d=\"M17.0483 7.77148L17.0919 7.27339L16.5938 7.22981L16.5502 7.72791L17.0483 7.77148ZM15.8632 15.5813L15.8196 16.0794L16.8158 16.1666L16.8594 15.6685L15.8632 15.5813ZM20.6011 8.08231L20.6446 7.58421L20.6011 8.08231ZM20.143 13.3179L20.0927 13.8154L20.0994 13.816L20.143 13.3179ZM1 8.54856L0.913176 8.05616L0.420772 8.14299L0.507596 8.63539L1 8.54856ZM1.87653 16.399L1.96336 16.8914L2.94817 16.7178L2.86134 16.2254L1.87653 16.399ZM4.51212 7.92928L4.59894 8.42169L4.51212 7.92928ZM5.42474 13.105L5.51032 13.5977L5.51157 13.5974L5.42474 13.105ZM16.5502 7.72791L15.8632 15.5813L16.8594 15.6685L17.5464 7.81506L16.5502 7.72791ZM17.0048 8.26958L20.5575 8.58041L20.6446 7.58421L17.0919 7.27339L17.0048 8.26958ZM20.1933 12.8204L17.0503 12.5025L16.9497 13.4975L20.0927 13.8154L20.1933 12.8204ZM22.4917 10.8856C22.3893 12.0562 21.3573 12.9222 20.1866 12.8198L20.0994 13.816C21.8203 13.9666 23.3374 12.6936 23.4879 10.9727L22.4917 10.8856ZM20.5575 8.58041C21.7282 8.68283 22.5942 9.71488 22.4917 10.8856L23.4879 10.9727C23.6385 9.25185 22.3655 7.73477 20.6446 7.58421L20.5575 8.58041ZM0.507596 8.63539L1.87653 16.399L2.86134 16.2254L1.4924 8.46174L0.507596 8.63539ZM1.08682 9.04097L4.59894 8.42169L4.42529 7.43688L0.913176 8.05616L1.08682 9.04097ZM5.33916 12.6124L1.91442 13.2074L2.08558 14.1926L5.51032 13.5977L5.33916 12.6124ZM7.0639 10.1477C7.26797 11.305 6.49522 12.4086 5.33792 12.6126L5.51157 13.5974C7.21276 13.2975 8.34868 11.6752 8.04871 9.97402L7.0639 10.1477ZM4.59894 8.42169C5.75624 8.21762 6.85984 8.99037 7.0639 10.1477L8.04871 9.97402C7.74874 8.27283 6.12649 7.13691 4.42529 7.43688L4.59894 8.42169ZM15.4221 12.051C15.4221 13.9518 13.8812 15.4927 11.9804 15.4927V16.4927C14.4335 16.4927 16.4221 14.5041 16.4221 12.051H15.4221ZM11.9804 15.4927C10.0796 15.4927 8.53875 13.9518 8.53875 12.051H7.53875C7.53875 14.5041 9.52736 16.4927 11.9804 16.4927V15.4927ZM8.53875 12.051C8.53875 10.1502 10.0796 8.60933 11.9804 8.60933V7.60933C9.52736 7.60933 7.53875 9.59795 7.53875 12.051H8.53875ZM11.9804 8.60933C13.8812 8.60933 15.4221 10.1502 15.4221 12.051H16.4221C16.4221 9.59795 14.4335 7.60933 11.9804 7.60933V8.60933Z\" fill=\"currentColor\"/><Path d=\"M7.80931 17L8.9007 18.8376L11 18.9601L9.62792 20.5892L10.1626 22.6683L8.22327 21.8376L6.45445 23L6.62792 20.8575L5 19.4968L7.0466 19.0034L7.80931 17Z\" fill=\"currentColor\"/><Path d=\"M15.1907 0L15.9534 2.00341L18 2.49679L16.3721 3.85751L16.5456 6L14.7767 4.83756L12.8374 5.66831L13.3721 3.58916L12 1.9601L14.0993 1.83756L15.1907 0Z\" fill=\"currentColor\"/><Path d=\"M10 4.5C10 5.32843 9.32843 6 8.5 6C7.67157 6 7 5.32843 7 4.5C7 3.67157 7.67157 3 8.5 3C9.32843 3 10 3.67157 10 4.5Z\" fill=\"currentColor\"/><Path d=\"M17 19.5C17 20.3284 16.3284 21 15.5 21C14.6716 21 14 20.3284 14 19.5C14 18.6716 14.6716 18 15.5 18C16.3284 18 17 18.6716 17 19.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMakeItPop;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAg1F,EAAh1F,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,+jEAA+jE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sHAAsH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oIAAoI,KAAK,eAAc,CAAI,EACx1F,EAEc",
  "debugId": "6C20B3A40E3BBD5464756E2164756E21",
  "names": []
}