{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBlockSortDescending/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 IconBlockSortDescending: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"block-sort-descending\"><path d=\"M7 11C9.20914 11 11 9.20914 11 7C11 4.79086 9.20914 3 7 3C4.79086 3 3 4.79086 3 7C3 9.20914 4.79086 11 7 11Z\" fill=\"currentColor\"/><path d=\"M17.5264 17.832C17.8209 18.0723 18.2557 18.0549 18.5303 17.7803L22.7803 13.5303C23.0732 13.2374 23.0732 12.7626 22.7803 12.4697C22.4874 12.1768 22.0126 12.1768 21.7197 12.4697L18.75 15.4395V6.75C18.75 6.33579 18.4142 6 18 6C17.5858 6 17.25 6.33579 17.25 6.75V15.4395L14.2803 12.4697C13.9874 12.1768 13.5126 12.1768 13.2197 12.4697C12.9268 12.7626 12.9268 13.2374 13.2197 13.5303L17.4697 17.7803L17.5264 17.832Z\" fill=\"currentColor\"/><path d=\"M7 21C9.20914 21 11 19.2091 11 17C11 14.7909 9.20914 13 7 13C4.79086 13 3 14.7909 3 17C3 19.2091 4.79086 21 7 21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBlockSortDescending;\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,EAA0D,CAAC,IAAU,CAChF,OAAO,gBAAuxB,EAAvxB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,+GAA+G,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6ZAA6Z,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oHAAoH,KAAK,eAAc,CAAI,GAGjxB",
  "debugId": "D91EBCCB238A320A64756E2164756E21",
  "names": []
}