{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeInsert/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 IconCodeInsert: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-insert\"><path d=\"M16.2454 1.75C16.6596 1.75 16.9954 2.08579 16.9954 2.5V4H21.2454C21.6596 4 21.9954 4.33579 21.9954 4.75V19.25C21.9954 19.6642 21.6596 20 21.2454 20H16.9954V21.5C16.9954 21.9142 16.6596 22.25 16.2454 22.25C15.8312 22.25 15.4954 21.9142 15.4954 21.5V2.5C15.4954 2.08579 15.8312 1.75 16.2454 1.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 4.75C2 4.33579 2.33579 4 2.75 4H14V20H2.75C2.33579 20 2 19.6642 2 19.25V4.75ZM8.03033 8.96967C7.73744 8.67678 7.26256 8.67678 6.96967 8.96967C6.67678 9.26256 6.67678 9.73744 6.96967 10.0303L8.93934 12L6.96967 13.9697C6.67678 14.2626 6.67678 14.7374 6.96967 15.0303C7.26256 15.3232 7.73744 15.3232 8.03033 15.0303L10.5303 12.5303C10.8232 12.2374 10.8232 11.7626 10.5303 11.4697L8.03033 8.96967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeInsert;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA80B,EAA90B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,ySAAyS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+YAA+Y,KAAK,eAAc,CAAI,GAGx0B",
  "debugId": "DD4225CCD1E21FCB64756E2164756E21",
  "names": []
}