{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStrawberry/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 IconStrawberry: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"strawberry, ai, dessert\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.75 2C12.75 1.58579 12.4142 1.25 12 1.25C11.5858 1.25 11.25 1.58579 11.25 2V3.03909C10.7749 2.69109 10.243 2.43382 9.73208 2.24851C8.45799 1.7864 7.05935 1.67236 6.27615 1.79731C5.95984 1.84514 5.64817 1.96508 5.40357 2.20476C5.15261 2.45068 5.04137 2.75484 5.01009 3.03926C4.95323 3.55639 5.14909 4.09894 5.33888 4.50867C5.54077 4.94451 5.80981 5.38053 6.04855 5.7339C5.06639 6.30091 4.34093 7.04954 3.84524 7.9507C3.23279 9.06415 3 10.3572 3 11.7249C3 14.0601 4.25926 16.6091 5.93229 18.5471C7.59036 20.4676 9.84227 22.0001 12 22.0001C14.1577 22.0001 16.4096 20.4676 18.0677 18.5471C19.7407 16.6091 21 14.0601 21 11.7249C21 10.3572 20.7672 9.06415 20.1548 7.9507C19.6894 7.10471 19.0216 6.39315 18.129 5.84007C18.3842 5.4701 18.6885 4.98927 18.9111 4.50867C19.1009 4.09894 19.2968 3.55639 19.2399 3.03926C19.2086 2.75484 19.0974 2.45068 18.8464 2.20476C18.6018 1.96508 18.2902 1.84515 17.9739 1.79731C17.1907 1.67236 15.792 1.7864 14.5179 2.24851C13.9153 2.46709 13.2835 2.7858 12.75 3.23543V2ZM9.22063 3.65862C10.2812 4.0433 11.0429 4.64789 11.25 5.47537V5.48032C10.7673 5.43894 10.3095 5.36474 9.8535 5.29083C9.68888 5.26415 9.5245 5.23751 9.35927 5.21247C8.76302 5.12208 8.10951 5.04308 7.47332 5.15536C7.23077 4.81624 6.91216 4.33633 6.69996 3.87821C6.5674 3.59205 6.51511 3.3939 6.5028 3.28013L6.51048 3.27889C6.99914 3.20018 8.14096 3.26703 9.22063 3.65862ZM14.1465 5.29083C13.7715 5.3516 13.3954 5.41257 13.0051 5.45533C13.2194 4.63812 13.9774 4.04019 15.0294 3.65862C16.109 3.26703 17.2509 3.20023 17.7395 3.27894L17.7472 3.28009C17.7349 3.39386 17.6826 3.59201 17.55 3.87821C17.328 4.35752 16.9895 4.86068 16.7435 5.2015C16.0403 5.02521 15.305 5.11178 14.6407 5.21247C14.4755 5.23751 14.3111 5.26415 14.1465 5.29083ZM9 11C9 11.8284 8.55228 12.5 8 12.5C7.44772 12.5 7 11.8284 7 11C7 10.1716 7.44772 9.5 8 9.5C8.55228 9.5 9 10.1716 9 11ZM13 11C13 11.8284 12.5523 12.5 12 12.5C11.4477 12.5 11 11.8284 11 11C11 10.1716 11.4477 9.5 12 9.5C12.5523 9.5 13 10.1716 13 11ZM16 12.5C16.5523 12.5 17 11.8284 17 11C17 10.1716 16.5523 9.5 16 9.5C15.4477 9.5 15 10.1716 15 11C15 11.8284 15.4477 12.5 16 12.5ZM15 15.5C15 16.3284 14.5523 17 14 17C13.4477 17 13 16.3284 13 15.5C13 14.6716 13.4477 14 14 14C14.5523 14 15 14.6716 15 15.5ZM10 17C10.5523 17 11 16.3284 11 15.5C11 14.6716 10.5523 14 10 14C9.44772 14 9 14.6716 9 15.5C9 16.3284 9.44772 17 10 17Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStrawberry;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAw7E,EAAx7E,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mzEAAmzE,KAAK,eAAc,CAAI,GAGl7E",
  "debugId": "8455FA24AE524F5464756E2164756E21",
  "names": []
}