{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFormPyramide/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 IconFormPyramide: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"form-pyramide, prism\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.5802 2.6726C11.279 1.71069 12.7134 1.7107 13.4123 2.6726L22.174 14.7351C22.8007 15.598 22.5163 16.8159 21.5724 17.3122L12.8107 21.9187C12.3009 22.1865 11.6915 22.1867 11.1818 21.9187L2.42007 17.3122C1.47646 16.8159 1.19216 15.5979 1.81851 14.7351L10.5802 2.6726ZM11.9962 20.6199C12.0361 20.6199 12.0761 20.6105 12.1125 20.5915L20.8742 15.9851C21.009 15.9142 21.0495 15.7402 20.9601 15.6169L12.1984 3.55443C12.1484 3.48563 12.0725 3.4508 11.9962 3.45092V20.6199Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFormPyramide;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAslB,EAAtlB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,odAAod,KAAK,eAAc,CAAI,GAGhlB",
  "debugId": "FCA264F84D2B510C64756E2164756E21",
  "names": []
}