{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBlockSortAscending/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 IconBlockSortAscending: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"block-sort-ascending\"><path d=\"M7 13C9.20914 13 11 14.7909 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13Z\" fill=\"currentColor\"/><path d=\"M17.5264 6.16797C17.8209 5.92766 18.2557 5.94512 18.5303 6.21973L22.7803 10.4697C23.0732 10.7626 23.0732 11.2374 22.7803 11.5303C22.4874 11.8232 22.0126 11.8232 21.7197 11.5303L18.75 8.56055V17.25C18.75 17.6642 18.4142 18 18 18C17.5858 18 17.25 17.6642 17.25 17.25V8.56055L14.2803 11.5303C13.9874 11.8232 13.5126 11.8232 13.2197 11.5303C12.9268 11.2374 12.9268 10.7626 13.2197 10.4697L17.4697 6.21973L17.5264 6.16797Z\" fill=\"currentColor\"/><path d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBlockSortAscending;\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,EAAyD,CAAC,IAAU,CAC/E,OAAO,gBAA4xB,EAA5xB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,oHAAoH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oaAAoa,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8GAA8G,KAAK,eAAc,CAAI,GAGtxB",
  "debugId": "4970E1091C4788DC64756E2164756E21",
  "names": []
}