{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFloppyDisk1/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 IconFloppyDisk1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"floppy-disk-1, save\"><path d=\"M7 3H6.75C4.67893 3 3 4.67893 3 6.75V17.25C3 19.3211 4.67893 21 6.75 21H7V12.75C7 12.3358 7.33579 12 7.75 12H16.25C16.6642 12 17 12.3358 17 12.75V21H17.25C19.3211 21 21 19.3211 21 17.25V7.99264C21 6.99808 20.6049 6.04425 19.9016 5.34099L18.659 4.09835C18.195 3.63434 17.6219 3.30448 17 3.13375V8.25C17 8.66421 16.6642 9 16.25 9H7.75C7.33579 9 7 8.66421 7 8.25V3Z\" fill=\"currentColor\"/><path d=\"M15.5 3H8.5V7.5H15.5V3Z\" fill=\"currentColor\"/><path d=\"M15.5 21V13.5H8.5V21H15.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFloppyDisk1;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAyjB,EAAzjB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,6WAA6W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0BAA0B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6BAA6B,KAAK,eAAc,CAAI,GAGnjB",
  "debugId": "C2AE3B070EFF66D664756E2164756E21",
  "names": []
}