{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFormHexagon/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 IconFormHexagon: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"form-hexagon\"><path d=\"M11.123 1.88863C11.6644 1.57619 12.3317 1.57619 12.873 1.88863L20.3164 6.18648C20.8578 6.49906 21.1913 7.07698 21.1914 7.70211V16.2978C21.1913 16.9229 20.8578 17.5009 20.3164 17.8134L12.873 22.1113C12.3317 22.4237 11.6644 22.4237 11.123 22.1113L3.67969 17.8134C3.13831 17.5009 2.80477 16.9229 2.80469 16.2978V7.70211C2.80476 7.07698 3.1383 6.49906 3.67969 6.18648L11.123 1.88863Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFormHexagon;\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,gBAAkd,EAAld,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,8XAA8X,KAAK,eAAc,CAAI,GAG5c",
  "debugId": "F4FA636958AB7A6064756E2164756E21",
  "names": []
}