{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPin/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 IconPin: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pin\"><path d=\"M15.0303 2.21967C14.8692 2.0585 14.6434 1.97937 14.4169 2.00462C14.1904 2.02988 13.9876 2.15679 13.8659 2.34951L11.0111 6.86968L3.51976 9.28622C3.27115 9.36642 3.08218 9.5702 3.02092 9.82415C2.95967 10.0781 3.03497 10.3456 3.21969 10.5303L7.81436 15.125L3.21969 19.7197C2.92679 20.0126 2.92679 20.4874 3.21969 20.7803C3.51258 21.0732 3.98745 21.0732 4.28035 20.7803L8.87502 16.1857L13.4697 20.7803C13.6544 20.9651 13.9219 21.0403 14.1759 20.9791C14.4298 20.9178 14.6336 20.7289 14.7138 20.4803L17.1303 12.989L21.6505 10.1341C21.8432 10.0124 21.9701 9.80965 21.9954 9.58311C22.0207 9.35658 21.9415 9.13085 21.7803 8.96968L15.0303 2.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPin;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAA2sB,EAA3sB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,goBAAgoB,KAAK,eAAc,CAAI,GAGrsB",
  "debugId": "454AAACE9C25149764756E2164756E21",
  "names": []
}