{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRose/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </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\";\n\nexport const IconRose: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rose, flower, romance, love\" maskId=\"round-filled-radius-1-stroke-1.5-IconRose\"><path d=\"M12.588 2.1465C12.2113 1.99348 11.7888 1.99348 11.4122 2.14651C9.37634 2.97374 8.10544 4.04659 7.30273 5.60911C9.04271 5.86151 10.6452 6.54125 12 7.53645C13.3549 6.54122 14.9575 5.86147 16.6975 5.60909C15.8949 4.04657 14.624 2.97372 12.588 2.1465Z\" fill=\"currentColor\"/><path d=\"M5.6677 7.00192C4.73941 7.04489 4 7.81111 4 8.75002V11.9583C4 16.1418 7.18013 19.585 11.25 19.9652V21.25C11.25 21.6642 11.5858 22 12 22C12.4142 22 12.75 21.6642 12.75 21.25V14.25C12.75 10.302 9.5943 7.09104 5.6677 7.00192Z\" fill=\"currentColor\"/><path d=\"M14.25 19.6777C17.5749 18.7003 20 15.6116 20 11.9583V8.75002C20 7.78352 19.2165 7.00002 18.25 7.00002H18.2143C16.0563 7.00002 14.0751 7.76107 12.5221 9.02872C13.6076 10.4862 14.25 12.2931 14.25 14.25V19.6777Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRose;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAA83B,EAA93B,IAAqB,EAAO,UAAU,8BAA8B,OAAO,6CAA4C,gBAAC,OAAD,CAAM,EAAE,0PAA0P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iOAAiO,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,CAAI,EACt4B,EAEc",
  "debugId": "4570F22E2293CF9264756E2164756E21",
  "names": []
}