{
  "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} & 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  ...props\n}) => {\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      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRose: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rose, flower, romance, love\"><path d=\"M13.2424 2.27172C12.4603 1.88801 11.5398 1.88802 10.7577 2.27176C9.09123 3.08947 8.00681 4.17504 7.29395 5.60785C9.0373 5.85923 10.6429 6.53958 12 7.53645C13.3571 6.53955 14.9628 5.85919 16.7062 5.60783C15.9934 4.17501 14.909 3.08944 13.2424 2.27172Z\" fill=\"currentColor\"/><path d=\"M7.44478 7.26379C5.54548 7.05744 4 8.77705 4 10.75V11.9583C4 16.1418 7.18013 19.585 11.25 19.9651V21.25C11.25 21.6642 11.5858 22 12 22C12.4142 22 12.75 21.6642 12.75 21.25V14.25C12.75 10.9196 10.5044 8.11369 7.44478 7.26379Z\" fill=\"currentColor\"/><path d=\"M14.25 19.6777C17.5749 18.7002 20 15.6115 20 11.9583V10.75C20 8.67893 18.297 6.88702 16.2694 7.30908C14.9307 7.58774 13.6706 8.10211 12.5229 9.02982C13.6079 10.4871 14.25 12.2936 14.25 14.25V19.6777Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRose;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAu0B,EAAv0B,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,6PAA6P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mOAAmO,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0MAA0M,KAAK,eAAc,CAAI,GAGj0B",
  "debugId": "0A13A6000C7107D164756E2164756E21",
  "names": []
}