{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDrop/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 IconDrop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"drop, water, precipitation, liquid\"><path d=\"M11.5388 2.15854C11.8099 1.94715 12.1901 1.94715 12.4612 2.15854L12.4636 2.16045L12.4687 2.16443L12.4865 2.17853C12.5018 2.19063 12.5238 2.20813 12.552 2.23083C12.6083 2.27625 12.6896 2.34255 12.7924 2.42835C12.9977 2.5999 13.289 2.84973 13.6375 3.16677C14.3335 3.79993 15.2632 4.70578 16.195 5.79559C18.027 7.93812 20 10.9434 20 14.0556C20 18.4486 16.4128 22 12 22C7.58717 22 4 18.4486 4 14.0556C4 10.9434 5.97302 7.93812 7.80496 5.79559C8.73679 4.70578 9.66646 3.79993 10.3625 3.16677C10.711 2.84973 11.0023 2.5999 11.2076 2.42835C11.3104 2.34255 11.3917 2.27625 11.448 2.23083C11.4762 2.20813 11.4982 2.19063 11.5135 2.17853L11.5313 2.16443L11.5364 2.16045L11.5388 2.15854Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDrop;\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,gBAAixB,EAAjxB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,uqBAAuqB,KAAK,eAAc,CAAI,GAG3wB",
  "debugId": "88AEBE2B8A88105F64756E2164756E21",
  "names": []
}