{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinCircle/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 IconPinCircle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pin-circle, location\"><path d=\"M12.75 12.25V11.5H11.25V12.25H12.75ZM13.414 8.08564C14.1955 8.86719 14.1951 10.1339 13.4142 10.9141L14.4744 11.9752C15.842 10.6089 15.8416 8.39206 14.4747 7.02502L13.414 8.08564ZM13.4142 10.9141C12.6324 11.6952 11.3656 11.6952 10.5859 10.9146L9.52466 11.9747C10.8913 13.3428 13.1078 13.3406 14.4744 11.9752L13.4142 10.9141ZM10.5859 10.9146C9.80476 10.1327 9.80483 8.86573 10.5854 8.0859L9.52518 7.02476C8.15727 8.39143 8.15944 10.6081 9.52466 11.9747L10.5859 10.9146ZM10.5854 8.0859C11.3671 7.3049 12.633 7.30459 13.414 8.08564L14.4747 7.02502C13.1072 5.65747 10.8919 5.65927 9.52518 7.02476L10.5854 8.0859ZM11.25 12.25V17.25H12.75V12.25H11.25ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C16.6944 3.5 20.5 7.30558 20.5 12H22C22 6.47715 17.5228 2 12 2V3.5ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinCircle;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA6gC,EAA7gC,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,i7BAAi7B,KAAK,eAAc,CAAI,GAGvgC",
  "debugId": "98352851E1796DA064756E2164756E21",
  "names": []
}