{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNumberedList/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 IconNumberedList: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"numbered-list\"><path d=\"M11.75 16.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M11.75 7.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M6.25 9.75V4.75H5.625L3.75 6.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M3.99652 19.25H3.24652V20H3.99652V19.25ZM7.24652 20H7.99652V18.5H7.24652V20ZM3.99652 19.25V20H7.24652V19.25V18.5H3.99652V19.25ZM5.60754 14.25V15C6.00598 15 6.24652 15.2606 6.24652 15.639H6.99652H7.74652C7.74652 14.4831 6.88447 13.5 5.60754 13.5V14.25ZM6.99652 15.639H6.24652C6.24652 15.8523 6.16686 16.036 5.97583 16.2436C5.76665 16.471 5.46839 16.6791 5.08612 16.9291C4.73887 17.1561 4.2911 17.4357 3.94762 17.7633C3.58741 18.1069 3.24652 18.5905 3.24652 19.25H3.99652H4.74652C4.74652 19.1595 4.78064 19.0417 4.98292 18.8487C5.20194 18.6398 5.50417 18.4479 5.90692 18.1846C6.27465 17.9442 6.72639 17.6433 7.07971 17.2592C7.45118 16.8555 7.74652 16.3255 7.74652 15.639H6.99652ZM3.57812 15.2298L4.10314 15.7654C4.56704 15.3107 5.10264 15 5.60754 15V14.25V13.5C4.52323 13.5 3.62742 14.1313 3.05311 14.6942L3.57812 15.2298Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconNumberedList;\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,gBAA8qC,EAA9qC,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,iCAAiC,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,uzBAAuzB,KAAK,eAAc,CAAI,GAGxqC",
  "debugId": "285752F581B5EA4964756E2164756E21",
  "names": []
}