{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconYen/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 IconYen: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"yen, currency, money, coin\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM9.06443 7.50612C8.79167 7.19439 8.31785 7.16281 8.00612 7.43557C7.69439 7.70833 7.66281 8.18215 7.93557 8.49388L11.2222 12.25H9.75C9.33579 12.25 9 12.5858 9 13C9 13.4142 9.33579 13.75 9.75 13.75H11.25V17.25C11.25 17.6642 11.5858 18 12 18C12.4142 18 12.75 17.6642 12.75 17.25V13.75H14.25C14.6642 13.75 15 13.4142 15 13C15 12.5858 14.6642 12.25 14.25 12.25H12.7778L16.0644 8.49388C16.3372 8.18215 16.3056 7.70833 15.9939 7.43557C15.6822 7.16281 15.2083 7.19439 14.9356 7.50612L12 10.8611L9.06443 7.50612Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconYen;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAkvB,EAAlvB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0mBAA0mB,KAAK,eAAc,CAAI,GAG5uB",
  "debugId": "8D799B2755559E0164756E2164756E21",
  "names": []
}