{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNumber0Square/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 IconNumber0Square: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"number-0-square, key\"><path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.998 16.4385C9.98828 16.4385 8.78125 14.7334 8.78125 12.0029V11.9912C8.78125 9.26074 9.98828 7.56152 11.998 7.56152C14.0078 7.56152 15.2266 9.26074 15.2266 11.9912V12.0029C15.2266 14.7334 14.0078 16.4385 11.998 16.4385ZM11.998 15.2139C13.0762 15.2139 13.7031 14.0068 13.7031 12.0029V11.9912C13.7031 9.9873 13.0762 8.79199 11.998 8.79199C10.9199 8.79199 10.3047 9.9873 10.3047 11.9912V12.0029C10.3047 14.0068 10.9199 15.2139 11.998 15.2139Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconNumber0Square;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA+mB,EAA/mB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,6bAA6b,KAAK,eAAc,CAAI,GAGzmB",
  "debugId": "50A747E0F3DEC18A64756E2164756E21",
  "names": []
}