{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUnicorn/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 IconUnicorn: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"unicorn, startup, success\"><path d=\"M15.5514 3.6054C16.2163 3.27295 16.9986 3.75644 16.9986 4.49983V6.73426L17.0055 6.74637L22.2005 3.92564C22.6676 3.67203 23.1554 4.22583 22.8449 4.65717L18.9986 9.99996C19.7005 11.2283 20.3416 12.2016 20.8474 13.4208C21.3947 14.7403 20.7891 16.1696 19.8613 17.2559L19.3976 17.7988C19.0621 18.1917 18.5868 18.4488 18.0837 18.4318C17.9493 18.4272 17.8188 18.3848 17.6942 18.3342C14.9537 17.2224 13.9465 16.4765 11.6454 15.4413C11.9316 16.8102 11.9419 18.2589 11.978 19.6816C11.9944 20.3259 11.4174 20.8352 10.7827 20.7234L1.82509 19.1454C1.34709 19.0612 0.996061 18.648 1.01647 18.1631C1.27591 11.9992 4.5 4.65717 12.9834 4.88937L15.5514 3.6054Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconUnicorn;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAsuB,EAAtuB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,qoBAAqoB,KAAK,eAAc,CAAI,GAGhuB",
  "debugId": "A27F2B9B82DAE3B864756E2164756E21",
  "names": []
}