{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPlan/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 IconPlan: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"plan, process, connect, path\"><path d=\"M17.5 3C19.433 3 21 4.567 21 6.5C21 8.433 19.433 10 17.5 10C15.8246 10 14.4255 8.82244 14.082 7.25H8.81348C7.77942 7.25 7.42521 8.6275 8.33105 9.12598L16.3916 13.5596C18.6569 14.8055 17.7719 18.25 15.1865 18.25H9.91797C9.57452 19.8224 8.17545 21 6.5 21C4.567 21 3 19.433 3 17.5C3 15.567 4.567 14 6.5 14C8.17545 14 9.57452 15.1776 9.91797 16.75H15.1865C16.2206 16.75 16.5748 15.3725 15.6689 14.874L7.6084 10.4404C5.34308 9.1945 6.22813 5.75 8.81348 5.75H14.082C14.4255 4.17756 15.8246 3 17.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPlan;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAolB,EAAplB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,gfAAgf,KAAK,eAAc,CAAI,GAG9kB",
  "debugId": "9C21A4D0D741A05B64756E2164756E21",
  "names": []
}