{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTodos/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 IconTodos: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"todos,check,things, task\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.25 3C20.6642 3 21 3.33579 21 3.75V20.25C21 20.6642 20.6642 21 20.25 21H15.5C15.2239 21 15 20.7761 15 20.5C15 20.2239 14.7761 20 14.5 20H9.5C9.22386 20 9 20.2239 9 20.5C9 20.7761 8.77614 21 8.5 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75C3 3.33579 3.33579 3 3.75 3H20.25ZM15.7558 9.61807C15.9922 9.27798 15.9082 8.81059 15.5681 8.57414C15.228 8.3377 14.7607 8.42172 14.5242 8.76181L11.0972 13.691L9.49578 12.2802C9.18498 12.0064 8.71105 12.0364 8.43724 12.3472C8.16343 12.658 8.19341 13.1319 8.50422 13.4057L10.7369 15.3727C10.8974 15.5141 11.1106 15.5802 11.3229 15.5545C11.5352 15.5288 11.7264 15.4137 11.8485 15.2381L15.7558 9.61807Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTodos;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAswB,EAAtwB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,goBAAgoB,KAAK,eAAc,CAAI,GAGhwB",
  "debugId": "D64585CF7888DFBD64756E2164756E21",
  "names": []
}