{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconContrast/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 IconContrast: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"contrast\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5V20.5C12.6567 20.5 13.2961 20.4255 13.91 20.2846V3.71545C13.2961 3.57448 12.6567 3.5 12 3.5ZM15.41 4.21165V19.7883C16.0716 19.4982 16.6892 19.1263 17.25 18.6853V5.31467C16.6892 4.87369 16.0716 4.50175 15.41 4.21165ZM18.75 6.83329V17.1667C19.8477 15.7348 20.5 13.9436 20.5 12C20.5 10.0564 19.8477 8.26516 18.75 6.83329ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconContrast;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA8iB,EAA9iB,IAAqB,EAAO,UAAU,YAAW,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wbAAwb,KAAK,eAAc,CAAI,GAGxiB",
  "debugId": "672C26C9A07151E964756E2164756E21",
  "names": []
}