{
  "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.5V4H20.2454C21.2119 4 21.9954 4.7835 21.9954 5.75V18.25C21.9954 19.2165 21.2119 20 20.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 5.75C2 4.7835 2.7835 4 3.75 4H14V20H3.75C2.7835 20 2 19.2165 2 18.25V5.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,gBAA00B,EAA10B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,wSAAwS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4YAA4Y,KAAK,eAAc,CAAI,GAGp0B",
  "debugId": "2B34E7463494BA3F64756E2164756E21",
  "names": []
}