{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMarker/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 IconMarker: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"marker,highlight\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.9722 1.69093C16.6689 1.15499 17.6551 1.21904 18.2766 1.84058L22.1599 5.72385C22.7815 6.3454 22.8455 7.33156 22.3096 8.02828L13.2893 19.7546C12.6739 20.5547 11.5203 20.6634 10.7672 20.0198C9.12807 20.446 7.36689 21.1498 6.03626 22.183C5.34648 22.7186 4.28426 22.7695 3.58801 22.0733L1.92722 20.4125C1.23097 19.7162 1.28191 18.654 1.81749 17.9642C2.85067 16.6336 3.55451 14.8724 3.98072 13.2333C3.33709 12.4802 3.4458 11.3266 4.24589 10.7112L15.9722 1.69093ZM5.19296 14.4532C4.72309 15.973 4.01556 17.5792 3.00228 18.8842C2.86045 19.0668 2.90308 19.267 2.98788 19.3518L4.64867 21.0126C4.73347 21.0974 4.93365 21.14 5.11632 20.9982C6.42133 19.9849 8.02751 19.2774 9.54727 18.8075L5.19296 14.4532Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMarker;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA0zB,EAA1zB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4rBAA4rB,KAAK,eAAc,CAAI,GAGpzB",
  "debugId": "8EEBA3A3D78F8D8464756E2164756E21",
  "names": []
}