{
  "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=\"M14.471 3C13.9387 3 13.4354 3.24225 13.1033 3.65823L7.99609 10.0562L13.9444 16.0045L20.3424 10.8973C20.7583 10.5652 21.0006 10.0619 21.0006 9.52959V3.75C21.0006 3.33579 20.6648 3 20.2506 3H14.471Z\" fill=\"currentColor\"/><path d=\"M6.7463 10.5336C5.99408 9.78138 4.75028 9.86874 4.11059 10.7187L3.62085 11.3695C3.19237 11.9388 3.15189 12.7111 3.51851 13.3222L5.05545 15.8837L3.17663 17.7625C2.49321 18.446 2.49321 19.554 3.17663 20.2374L3.76241 20.8232C4.44583 21.5066 5.55387 21.5066 6.23729 20.8232L8.11611 18.9444L10.6777 20.4813C11.2887 20.8479 12.061 20.8075 12.6303 20.379L13.2811 19.8892C14.1311 19.2496 14.2185 18.0058 13.4662 17.2535L6.7463 10.5336Z\" 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,gBAA+uB,EAA/uB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8aAA8a,KAAK,eAAc,CAAI,GAGzuB",
  "debugId": "2887792B1038B2A964756E2164756E21",
  "names": []
}