{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSlice/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 IconSlice: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"slice, knife\"><path d=\"M6.48722 3.42687C5.8038 2.74345 4.69576 2.74345 4.01234 3.42687L2.42663 5.01259C1.74316 5.69605 1.74321 6.80418 2.42674 7.48758L6.93047 11.9904L4.2836 14.5535C4.13936 14.6932 4.05714 14.8849 4.05537 15.0857C4.05359 15.2865 4.1324 15.4796 4.27415 15.6218C7.42284 18.7807 10.124 20.3147 12.8954 20.8107C15.6398 21.3019 18.3513 20.752 21.4326 19.9775C21.6945 19.9116 21.9008 19.7101 21.9727 19.4498C22.0446 19.1896 21.9711 18.9107 21.7801 18.7198L6.48722 3.42687Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSlice;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAmiB,EAAniB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,+cAA+c,KAAK,eAAc,CAAI,GAG7hB",
  "debugId": "040552A2F2D934C464756E2164756E21",
  "names": []
}