{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStore4/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 IconStore4: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"store-4, shop, business\"><path d=\"M20.25 12V20.25H3.75V12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M8.90923 8.77398L9.65409 8.86161V8.86161L8.90923 8.77398ZM10.1914 4.29407C10.2398 3.88269 9.94556 3.50998 9.53419 3.46158C9.12281 3.41319 8.75009 3.70744 8.7017 4.11882L9.44656 4.20644L10.1914 4.29407ZM8.81182 9.60174L9.55668 9.68937L8.81182 9.60174ZM2.97261 8.35377L3.68822 8.57827L2.97261 8.35377ZM4.41693 3.75V3H3.86618L3.70132 3.52549L4.41693 3.75ZM19.5836 3.75L20.2992 3.52549L20.1343 3H19.5836V3.75ZM21.0279 8.35377L20.3123 8.57827L21.0279 8.35377ZM15.1887 9.60174L14.4438 9.68936L14.4438 9.68937L15.1887 9.60174ZM14.554 4.20644L15.2989 4.11881C15.2505 3.70744 14.8777 3.41318 14.4664 3.46158C14.055 3.50997 13.7607 3.88269 13.8091 4.29407L14.554 4.20644ZM15.0914 8.77397L15.8362 8.68634V8.68633L15.0914 8.77397ZM12.0003 12.25V11.5C10.5862 11.5 9.48887 10.266 9.65409 8.86161L8.90923 8.77398L8.16437 8.68635C7.89424 10.9825 9.68831 13 12.0003 13V12.25ZM15.0914 8.77397L14.3465 8.8616C14.5117 10.266 13.4144 11.5 12.0003 11.5V12.25V13C14.3123 13 16.1064 10.9825 15.8362 8.68634L15.0914 8.77397ZM21.0279 8.35377L21.7435 8.12926L20.2992 3.52549L19.5836 3.75L18.868 3.97451L20.3123 8.57827L21.0279 8.35377ZM18.1668 12.25V13C20.6975 13 22.5011 10.5439 21.7435 8.12926L21.0279 8.35377L20.3123 8.57827C20.7667 10.0267 19.6848 11.5 18.1668 11.5V12.25ZM15.1887 9.60174L14.4438 9.68937C14.6659 11.5772 16.2659 13 18.1668 13V12.25V11.5C17.0265 11.5 16.0668 10.6465 15.9336 9.51411L15.1887 9.60174ZM2.97261 8.35377L3.68822 8.57827L5.13254 3.97451L4.41693 3.75L3.70132 3.52549L2.257 8.12926L2.97261 8.35377ZM5.83373 12.25V11.5C4.31567 11.5 3.2338 10.0267 3.68822 8.57827L2.97261 8.35377L2.257 8.12926C1.49945 10.5439 3.30301 13 5.83373 13V12.25ZM8.81182 9.60174L8.06696 9.51411C7.93373 10.6465 6.97398 11.5 5.83373 11.5V12.25V13C7.73461 13 9.33458 11.5772 9.55668 9.68937L8.81182 9.60174ZM9.44656 4.20644L8.7017 4.11881L8.06696 9.51411L8.81182 9.60174L9.55668 9.68937L10.1914 4.29407L9.44656 4.20644ZM8.90923 8.77398L9.65409 8.86161L10.1914 4.29407L9.44656 4.20644L8.7017 4.11882L8.16437 8.68635L8.90923 8.77398ZM14.554 4.20644L13.8091 4.29407L14.4438 9.68936L15.1887 9.60174L15.9336 9.51411L15.2989 4.11882L14.554 4.20644ZM14.554 4.20644L13.8091 4.29408L14.3465 8.8616L15.0914 8.77397L15.8362 8.68633L15.2989 4.11881L14.554 4.20644ZM4.41693 3.75V4.5H19.5836V3.75V3H4.41693V3.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStore4;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAo6E,EAAp6E,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,muEAAmuE,KAAK,eAAc,CAAI,GAG95E",
  "debugId": "3F1BA19DA7CBE82064756E2164756E21",
  "names": []
}