{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSword/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 IconSword: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sword, action, gaming\"><path d=\"M6.60989 10.397C5.92987 9.71697 4.80544 9.79595 4.22715 10.5644C3.43235 11.6205 3.35727 13.053 4.03731 14.1864L5.05575 15.8838L2.96982 17.9698C2.12464 18.8149 2.12464 20.1852 2.96982 21.0304C3.815 21.8756 5.1853 21.8756 6.03048 21.0304L8.11641 18.9445L9.81381 19.9629C10.9472 20.643 12.3798 20.5679 13.4359 19.7731C14.2043 19.1948 14.2833 18.0704 13.6032 17.3903L6.60989 10.397Z\" fill=\"currentColor\"/><path d=\"M15.4336 3C14.293 3 13.2144 3.5191 12.5028 4.4105L7.99609 10.0562L13.9444 16.0045L19.5901 11.4978C20.4815 10.7862 21.0006 9.70762 21.0006 8.56703V3.75C21.0006 3.33579 20.6648 3 20.2506 3H15.4336Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSword;\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,gBAA6rB,EAA7rB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,6XAA6X,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,CAAI,GAGvrB",
  "debugId": "3D990DBDCC2D7BF664756E2164756E21",
  "names": []
}