{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnchor1/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 IconAnchor1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"anchor-1, link\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C10.067 2 8.5 3.567 8.5 5.5C8.5 7.17556 9.67741 8.57612 11.25 8.91946V20.5H7.75475C6.75306 20.5 5.87201 19.8378 5.59348 18.8756L3.7479 12.5H6.25001C6.66422 12.5 7.00001 12.1642 7.00001 11.75C7.00001 11.3358 6.66422 11 6.25001 11H2.75001C2.51421 11 2.29213 11.1109 2.15046 11.2994C2.00879 11.4879 1.96402 11.732 2.02958 11.9585L4.15263 19.2927C4.61684 20.8964 6.08527 22 7.75475 22H16.2453C17.9147 22 19.3832 20.8964 19.8474 19.2927L21.9704 11.9585C22.036 11.732 21.9912 11.4879 21.8496 11.2994C21.7079 11.1109 21.4858 11 21.25 11H17.75C17.3358 11 17 11.3358 17 11.75C17 12.1642 17.3358 12.5 17.75 12.5H20.2521L18.4065 18.8756C18.128 19.8378 17.2469 20.5 16.2453 20.5H12.75V8.91945C14.3226 8.57612 15.5 7.17556 15.5 5.5C15.5 3.567 13.933 2 12 2ZM10 5.5C10 4.39543 10.8954 3.5 12 3.5C13.1046 3.5 14 4.39543 14 5.5C14 6.60457 13.1046 7.5 12 7.5C10.8954 7.5 10 6.60457 10 5.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnchor1;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA4+B,EAA5+B,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,g3BAAg3B,KAAK,eAAc,CAAI,GAGt+B",
  "debugId": "E21DE99FA348F36964756E2164756E21",
  "names": []
}