{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRockingHorse/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 IconRockingHorse: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rocking-horse, child, kids, toy\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.3252 2C18.7412 2.00002 19.124 2.22757 19.3232 2.59277L21.3018 6.21973C21.7026 6.95476 21.5028 7.87265 20.833 8.375C20.3223 8.75791 19.6393 8.81963 19.0684 8.53418L18 8L17 10L19.4355 18.2832C19.895 18.0096 20.3567 17.7131 20.8174 17.3877C21.1557 17.1487 21.6233 17.2291 21.8623 17.5674C22.1013 17.9057 22.0209 18.3733 21.6826 18.6123C18.516 20.8493 15.2766 22 12 22C8.72344 22 5.484 20.8493 2.31738 18.6123C1.97911 18.3733 1.89872 17.9057 2.1377 17.5674C2.3767 17.2291 2.84432 17.1487 3.18262 17.3877C3.64013 17.7109 4.09837 18.0062 4.55469 18.2783L6.625 10H5.75C4.50736 10 3.5 11.0074 3.5 12.25C3.5 12.6642 3.16421 13 2.75 13C2.33579 13 2 12.6642 2 12.25C2 10.1789 3.67893 8.5 5.75 8.5H12L13.6064 5.01953C14.4559 3.17905 16.2981 2 18.3252 2ZM11.2256 15C10.4898 15.0001 9.83252 15.4608 9.58105 16.1523L8.20898 19.9238C9.47898 20.3092 10.7429 20.5 12 20.5C13.2568 20.5 14.5203 20.309 15.79 19.9238L14.4189 16.1523C14.1675 15.4608 13.5102 15.0001 12.7744 15H11.2256Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRockingHorse;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAulC,EAAvlC,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,08BAA08B,KAAK,eAAc,CAAI,GAGjlC",
  "debugId": "805F51116C9B908064756E2164756E21",
  "names": []
}