{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPin2/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 IconPin2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pin-2\"><path d=\"M14.7506 2C15.717 2.00013 16.5006 2.78358 16.5006 3.75V8.48047C16.5006 8.55772 16.5436 8.66317 16.6578 8.74512C18.3984 9.9934 19.6192 11.9249 19.9254 14.1504C20.0722 15.2177 19.1844 15.9999 18.2506 16H12.7496V20.3975C12.7496 20.4651 12.7363 20.5325 12.7096 20.5947L12.2301 21.7139C12.1435 21.9159 11.8567 21.9159 11.7701 21.7139L11.2906 20.5947C11.264 20.5325 11.2496 20.4651 11.2496 20.3975V16H5.75061C4.81681 15.9999 3.92903 15.2177 4.0758 14.1504C4.38203 11.9247 5.6026 9.99337 7.34338 8.74512C7.45762 8.66318 7.50059 8.55773 7.50061 8.48047V3.75C7.50061 2.78354 8.28417 2.00007 9.25061 2H14.7506Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPin2;\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,gBAAwqB,EAAxqB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,2lBAA2lB,KAAK,eAAc,CAAI,GAGlqB",
  "debugId": "78C3BBE5A462CDC564756E2164756E21",
  "names": []
}