{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeBrackets/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 IconCodeBrackets: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-brackets\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.4473 3.02643C14.847 3.13542 15.0826 3.54772 14.9736 3.94734L10.4736 20.4473C10.3646 20.847 9.95228 21.0826 9.55266 20.9736C9.15304 20.8646 8.91744 20.4523 9.02643 20.0527L13.5264 3.55267C13.6354 3.15305 14.0477 2.91745 14.4473 3.02643ZM6.26402 7.20385C6.56565 7.48774 6.58004 7.9624 6.29615 8.26403L2.77994 12L6.29615 15.736C6.58004 16.0376 6.56565 16.5123 6.26402 16.7962C5.9624 17.08 5.48774 17.0657 5.20385 16.764L1.20385 12.514C0.932051 12.2253 0.932049 11.7748 1.20385 11.486L5.20385 7.23598C5.48774 6.93435 5.96239 6.91997 6.26402 7.20385ZM17.736 7.20385C18.0376 6.91997 18.5123 6.93435 18.7962 7.23598L22.7962 11.486C23.068 11.7748 23.0679 12.2253 22.7961 12.514L18.7961 16.764C18.5123 17.0657 18.0376 17.08 17.736 16.7962C17.4343 16.5123 17.42 16.0376 17.7039 15.736L21.2201 12L17.7038 8.26403C17.42 7.9624 17.4343 7.48774 17.736 7.20385Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeBrackets;\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,gBAAg9B,EAAh9B,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q1BAAq1B,KAAK,eAAc,CAAI,GAG18B",
  "debugId": "39B968C4109D9A9864756E2164756E21",
  "names": []
}