{
  "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-0-stroke-1.5-IconRose\"><path d=\"M12.2531 2.01528C12.0902 1.95364 11.9098 1.95365 11.7468 2.01529C9.5141 2.85988 8.14844 3.96265 7.30262 5.6091C9.04259 5.8615 10.6451 6.54123 11.9999 7.53644C13.3548 6.5412 14.9574 5.86145 16.6974 5.60908C15.8517 3.96264 14.486 2.85987 12.2531 2.01528Z\" fill=\"currentColor\"/><path d=\"M4.75 7.00002C4.33579 7.00002 4 7.33581 4 7.75002V11.9584C4 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.246 9.50406 7.00002 5.5 7.00002H4.75Z\" fill=\"currentColor\"/><path d=\"M12.5221 9.02873C13.6076 10.4862 14.25 12.2931 14.25 14.25V19.6777C17.5749 18.7003 20 15.6116 20 11.9584V7.75002C20 7.33581 19.6642 7.00002 19.25 7.00002H18.2143C16.0563 7.00002 14.0751 7.76108 12.5221 9.02873Z\" 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,gBAAs4B,EAAt4B,IAAqB,EAAO,UAAU,8BAA8B,OAAO,6CAA4C,gBAAC,OAAD,CAAM,EAAE,+PAA+P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kOAAkO,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qNAAqN,KAAK,eAAc,CAAI,EAC94B,EAEc",
  "debugId": "C802AE75E2936C4164756E2164756E21",
  "names": []
}