{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFormOctagon/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 IconFormOctagon: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"form-octagon\"><path d=\"M14.5889 2C15.5834 2.00001 16.537 2.39538 17.2402 3.09863L20.9014 6.75977C21.6046 7.46302 22 8.41658 22 9.41113V14.5889C22 15.5834 21.6046 16.537 20.9014 17.2402L17.2402 20.9014C16.537 21.6046 15.5834 22 14.5889 22H9.41113C8.41658 22 7.46302 21.6046 6.75977 20.9014L3.09863 17.2402C2.39538 16.537 2.00001 15.5834 2 14.5889V9.41113C2.00001 8.41658 2.39538 7.46302 3.09863 6.75977L6.75977 3.09863C7.46302 2.39538 8.41658 2.00001 9.41113 2H14.5889Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFormOctagon;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAohB,EAAphB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,gcAAgc,KAAK,eAAc,CAAI,GAG9gB",
  "debugId": "8EE62B0C88D9EF4464756E2164756E21",
  "names": []
}