{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPlayground/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 IconPlayground: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"playground, forms, shapes, geo\"><path d=\"M15.4278 3.03394C14.4945 2.78414 13.5354 3.3379 13.2851 4.27103L12.2008 8.3132C11.9503 9.24706 12.5046 10.2071 13.4386 10.4571L17.4871 11.5407C18.4203 11.7905 19.3795 11.2367 19.6298 10.3036L20.7141 6.26142C20.9646 5.32756 20.4103 4.36752 19.4763 4.11753L15.4278 3.03394Z\" fill=\"currentColor\"/><path d=\"M5.47325 6.41118C5.26797 6.23912 4.98651 6.18959 4.73483 6.28125C4.48315 6.3729 4.29945 6.59182 4.25289 6.8556L3.01144 13.8885C2.96486 14.1523 3.06257 14.421 3.26777 14.5933C3.47297 14.7655 3.75448 14.8153 4.00628 14.7237L10.7244 12.2812C10.9763 12.1896 11.1602 11.9705 11.2067 11.7065C11.2533 11.4425 11.1553 11.1738 10.9499 11.0016L5.47325 6.41118Z\" fill=\"currentColor\"/><path d=\"M14.0098 13.3154C11.8866 13.3154 10.1641 15.0349 10.1641 17.1577C10.1641 19.2806 11.8866 21 14.0098 21C16.1329 21 17.8555 19.2806 17.8555 17.1577C17.8555 15.0349 16.1329 13.3154 14.0098 13.3154Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPlayground;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAw9B,EAAx9B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iWAAiW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,CAAI,GAGl9B",
  "debugId": "7DACD17E3D28CF1364756E2164756E21",
  "names": []
}