{
  "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=\"M13.9897 3C13.7616 3 13.5459 3.10382 13.4036 3.2821L7.99609 10.0562L13.9444 16.0045L20.7185 10.597C20.8968 10.4547 21.0006 10.239 21.0006 10.0109V3.75C21.0006 3.33579 20.6648 3 20.2506 3H13.9897Z\" fill=\"currentColor\"/><path d=\"M5.9325 9.71967C5.77892 9.56609 5.56629 9.48663 5.34962 9.50185C5.13295 9.51706 4.93352 9.62547 4.80292 9.79901L3.21596 11.9077C3.03232 12.1517 3.01498 12.4827 3.1721 12.7446L5.0556 15.8837L2.46967 18.4697C2.17678 18.7626 2.17678 19.2374 2.46967 19.5303L4.46967 21.5303C4.76256 21.8232 5.23744 21.8232 5.53033 21.5303L8.11626 18.9444L11.2554 20.8279C11.5173 20.985 11.8483 20.9677 12.0923 20.784L14.201 19.1971C14.3745 19.0665 14.4829 18.867 14.4982 18.6504C14.5134 18.4337 14.4339 18.2211 14.2803 18.0675L5.9325 9.71967Z\" 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,gBAA40B,EAA50B,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,CAAI,GAGt0B",
  "debugId": "125108DE80CEC42D64756E2164756E21",
  "names": []
}