{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDino/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 IconDino: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"dino, age, old\"><path d=\"M16 10.5C8.96912 6.22033 7.17125 9.97708 5.46456 13.5433C4.54613 15.4624 3.65411 17.3263 1.98719 17.853C1.46057 18.0194 1 18.4477 1 19C1 19.5523 1.44771 20 2 20H6V20.5C6 21.3284 6.67157 22 7.5 22H8.5C9.32843 22 10 21.3284 10 20.5V20H13V20.5C13 21.3284 13.6716 22 14.5 22H15.5C16.3284 22 17 21.3284 17 20.5V19.1973C18.7934 18.1599 20 16.2208 20 14V7.11803C20 6.73926 20.214 6.393 20.5528 6.22361L21.581 5.70948C21.8378 5.5811 22 5.3144 22 5.02733C22 3.37047 20.6569 2 19 2C17.3431 2 16 3.34315 16 5V10.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDino;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAglB,EAAhlB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,EAAE,0fAA0f,KAAK,eAAc,CAAI,GAG1kB",
  "debugId": "C24D4192B132F91664756E2164756E21",
  "names": []
}