{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScissors1/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 IconScissors1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"scissors-1, cut\"><path d=\"M9.25 7C9.25 8.79493 7.79493 10.25 6 10.25C4.20507 10.25 2.75 8.79493 2.75 7C2.75 5.20507 4.20507 3.75 6 3.75C7.79493 3.75 9.25 5.20507 9.25 7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.25 17C9.25 18.7949 7.79493 20.25 6 20.25C4.20507 20.25 2.75 18.7949 2.75 17C2.75 15.2051 4.20507 13.75 6 13.75C7.79493 13.75 9.25 15.2051 9.25 17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M21.5 8L11.8333 12L21.5 16L18.5 18.5L11.75 15.5V12.0345V11.9655V8.5L18.5 5.5L21.5 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7 14L11.75 12.0345L11.8333 12L11.75 11.9655L7 10\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconScissors1;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAmrB,EAAnrB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,kJAAkJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wJAAwJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,uFAAuF,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oDAAoD,OAAO,eAAe,YAAY,MAAK,CAAI,GAG7qB",
  "debugId": "494DBB9A3BB5BA4D64756E2164756E21",
  "names": []
}