{
  "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.67357C11.279 1.71167 12.7134 1.71168 13.4123 2.67357L22.174 14.7361C22.8007 15.599 22.5163 16.8169 21.5724 17.3132L12.8107 21.9197C12.3009 22.1875 11.6915 22.1876 11.1818 21.9197L2.42007 17.3132C1.47646 16.8169 1.19216 15.5989 1.81851 14.7361L10.5802 2.67357ZM11.9962 20.6208C12.0361 20.6209 12.0761 20.6115 12.1125 20.5925L20.8742 15.9861C21.009 15.9152 21.0495 15.7412 20.9601 15.6179L12.1984 3.55541C12.1484 3.48661 12.0725 3.45178 11.9962 3.45189V20.6208Z\" 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,gBAA2lB,EAA3lB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ydAAyd,KAAK,eAAc,CAAI,GAGrlB",
  "debugId": "7BF8A145D581FC4964756E2164756E21",
  "names": []
}