{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCrop/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 IconCrop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"crop\"><path d=\"M15.75 8H8V15.75C8 15.8881 8.11193 16 8.25 16H16V8.25C16 8.11193 15.8881 8 15.75 8Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.75 2C6.16421 2 6.5 2.33579 6.5 2.75V5H17.25C18.2165 5 19 5.7835 19 6.75V17.5H21.25C21.6642 17.5 22 17.8358 22 18.25C22 18.6642 21.6642 19 21.25 19H19V21.25C19 21.6642 18.6642 22 18.25 22C17.8358 22 17.5 21.6642 17.5 21.25V19H6.75C5.7835 19 5 18.2165 5 17.25V6.5H2.75C2.33579 6.5 2 6.16421 2 5.75C2 5.33579 2.33579 5 2.75 5H5V2.75C5 2.33579 5.33579 2 5.75 2ZM6.5 17.25V6.5H17.25C17.3881 6.5 17.5 6.61193 17.5 6.75V17.5H6.75C6.61193 17.5 6.5 17.3881 6.5 17.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCrop;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAqrB,EAArrB,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,EAAE,sFAAsF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gdAAgd,KAAK,eAAc,CAAI,GAG/qB",
  "debugId": "579EDA20C4DBC12164756E2164756E21",
  "names": []
}