{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCameraAuto/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 IconCameraAuto: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"camera-auto\"><path d=\"M12 12.0374L12.8352 13.875H11.1648L12 12.0374Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.87596 3.33397C9.01506 3.12533 9.24924 3 9.5 3H14.5C14.7508 3 14.9849 3.12533 15.124 3.33397L16.9014 6H21.25C21.6642 6 22 6.33579 22 6.75V20.25C22 20.6642 21.6642 21 21.25 21H2.75C2.33579 21 2 20.6642 2 20.25V6.75C2 6.33579 2.33579 6 2.75 6H7.09861L8.87596 3.33397ZM12.6828 9.91462C12.5611 9.64688 12.2941 9.47498 12 9.47498C11.7059 9.47498 11.4389 9.64688 11.3172 9.91462L8.56722 15.9646C8.39582 16.3417 8.56256 16.7863 8.93965 16.9578C9.31673 17.1292 9.76137 16.9624 9.93278 16.5853L10.4829 15.375H13.5171L14.0672 16.5853C14.2386 16.9624 14.6833 17.1292 15.0604 16.9578C15.4374 16.7863 15.6042 16.3417 15.4328 15.9646L12.6828 9.91462Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCameraAuto;\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,gBAAw0B,EAAx0B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,iDAAiD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ioBAAioB,KAAK,eAAc,CAAI,GAGl0B",
  "debugId": "63C82616A988E9DE64756E2164756E21",
  "names": []
}