{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquarePlus/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 IconSquarePlus: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-plus, add\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.5179 3H15.4821C16.2949 2.99999 16.9506 2.99999 17.4815 3.04336C18.0281 3.08803 18.5082 3.18239 18.9525 3.40873C19.6581 3.76825 20.2318 4.34193 20.5913 5.04754C20.8176 5.49176 20.912 5.9719 20.9566 6.51853C21 7.04944 21 7.70505 21 8.51788V15.4821C21 16.295 21 16.9506 20.9566 17.4815C20.912 18.0281 20.8176 18.5082 20.5913 18.9525C20.2318 19.6581 19.6581 20.2318 18.9525 20.5913C18.5082 20.8176 18.0281 20.912 17.4815 20.9566C16.9506 21 16.295 21 15.4821 21H8.51788C7.70505 21 7.04944 21 6.51853 20.9566C5.9719 20.912 5.49176 20.8176 5.04754 20.5913C4.34193 20.2318 3.76825 19.6581 3.40873 18.9525C3.18239 18.5082 3.08803 18.0281 3.04336 17.4815C2.99999 16.9506 2.99999 16.2949 3 15.4821V8.51789C2.99999 7.70505 2.99999 7.04944 3.04336 6.51853C3.08803 5.9719 3.18239 5.49176 3.40873 5.04754C3.76825 4.34193 4.34193 3.76825 5.04754 3.40873C5.49176 3.18239 5.9719 3.08803 6.51853 3.04336C7.04944 2.99999 7.70506 2.99999 8.5179 3ZM15.25 12.7502C15.6642 12.7502 16 12.4144 16 12.0002C16 11.586 15.6642 11.2502 15.25 11.2502H12.75L12.75 8.75759C12.75 8.34337 12.4142 8.00759 12 8.00759C11.5858 8.00759 11.25 8.34337 11.25 8.75759L11.25 11.2502H8.75736C8.34314 11.2502 8.00736 11.586 8.00736 12.0002C8.00736 12.4144 8.34314 12.7502 8.75736 12.7502H11.25V15.2429C11.25 15.6571 11.5858 15.9929 12 15.9929C12.4142 15.9929 12.75 15.6571 12.75 15.2429V12.7502H15.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquarePlus;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA88C,EAA98C,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,g1CAAg1C,KAAK,eAAc,CAAI,GAGx8C",
  "debugId": "8CE85D115639FCA764756E2164756E21",
  "names": []
}