{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVariables/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 IconVariables: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"variables, figma\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.1257 2.71627C11.2859 2.0464 12.7154 2.0464 13.8757 2.71627L19.1029 5.73422C20.2632 6.40409 20.9779 7.64207 20.9779 8.98182V15.0177C20.9779 16.3575 20.2632 17.5954 19.1029 18.2653L13.8757 21.2833C12.7154 21.9531 11.2859 21.9531 10.1257 21.2833L4.89844 18.2653C3.73818 17.5954 3.02344 16.3575 3.02344 15.0177V8.98182C3.02344 7.64207 3.73818 6.40409 4.89844 5.73422L10.1257 2.71627ZM9.75073 11.9998C9.75073 10.7571 10.7581 9.74976 12.0007 9.74976C13.2434 9.74976 14.2507 10.7571 14.2507 11.9998C14.2507 13.2424 13.2434 14.2498 12.0007 14.2498C10.7581 14.2498 9.75073 13.2424 9.75073 11.9998Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconVariables;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAitB,EAAjtB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mlBAAmlB,KAAK,eAAc,CAAI,GAG3sB",
  "debugId": "05C9E34CCF641D6B64756E2164756E21",
  "names": []
}