{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVectorAnchorPointMirrored/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 IconVectorAnchorPointMirrored: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"vector-anchor-point-mirrored, mirror-angle\"><path d=\"M2.75 18C2.75 10.75 9 8.5 9 8.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M21.25 18C21.25 10.75 15 8.5 15 8.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.88907 7.75H2.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M15 7.75H21.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M2.5 5.25L0 7.75L2.5 10.25L5 7.75L2.5 5.25Z\" fill=\"currentColor\"/><path d=\"M21.5 5.25L19 7.75L21.5 10.25L24 7.75L21.5 5.25Z\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"7.75\" r=\"3\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconVectorAnchorPointMirrored;\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,EAAgE,CAAC,IAAU,CACtF,OAAO,gBAAupB,EAAvpB,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mDAAmD,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,OAAO,eAAe,YAAY,MAAK,CAAI,GAGjpB",
  "debugId": "9B4DC9E4DFE119C964756E2164756E21",
  "names": []
}