{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLens/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 IconLens: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lens, camera, focal-length , aperture, f-stop, iso, focus, depth\"><path d=\"M15.25 21.457C14.2308 21.8072 13.138 22 12 22C10.0753 22 8.27839 21.455 6.75293 20.5127L15.25 15.6084V21.457Z\" fill=\"currentColor\"/><path d=\"M21.8145 13.9131C21.2369 16.8933 19.3382 19.4009 16.75 20.8008V10.9893L21.8145 13.9131Z\" fill=\"currentColor\"/><path d=\"M10.499 16.6182L5.43652 19.541C3.33197 17.7077 2 15.0103 2 12C2 11.9046 2.00418 11.8096 2.00684 11.7148L10.499 16.6182Z\" fill=\"currentColor\"/><path d=\"M15.25 10.123V13.876L12 15.752L8.75 13.875V10.123L12 8.24609L15.25 10.123Z\" fill=\"currentColor\"/><path d=\"M7.25 13.0088L2.18457 10.085C2.76253 7.10531 4.66213 4.59777 7.25 3.19824V13.0088Z\" fill=\"currentColor\"/><path d=\"M18.5625 4.45801C20.6677 6.29131 22 8.98924 22 12C22 12.0948 21.9948 12.1891 21.9922 12.2832L13.499 7.38086L18.5625 4.45801Z\" fill=\"currentColor\"/><path d=\"M12 2C13.9242 2 15.7209 2.54449 17.2461 3.48633L8.75 8.39062V2.54199C9.76914 2.19187 10.8621 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLens;\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,gBAAkgC,EAAlgC,IAAqB,EAAO,UAAU,oEAAmE,gBAAC,OAAD,CAAM,EAAE,gHAAgH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6EAA6E,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,CAAI,GAG5/B",
  "debugId": "4E1CB715722772BB64756E2164756E21",
  "names": []
}