{
  "version": 3,
  "sources": ["src/IconReferenceImage/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconReferenceImage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"reference-image, verified-photo, proof, aperture\"} maskId=\"square-filled-radius-0-stroke-1-IconReferenceImage\" renderShapes={(instanceId) => <><g clipPath={\"\" + \"url(#clip0_15679_27848-\" + instanceId + \")\" + \"\"}><path d=\"M15.001 20.3135L12.001 23.3135L9.17188 20.4844L14.8291 14.8281C14.8886 14.7687 14.9453 14.7066 15.001 14.6436V20.3135Z\" fill=\"currentColor\"/><path d=\"M8.24316 20H4.00098V16H12.001C12.085 16 12.1683 15.9963 12.251 15.9912L8.24316 20Z\" fill=\"currentColor\"/><path d=\"M20.001 15.7578V20H16.001V12C16.001 11.9157 15.9973 11.832 15.9922 11.749L20.001 15.7578Z\" fill=\"currentColor\"/><path d=\"M9.17285 14.8281C9.23214 14.8874 9.29355 14.9445 9.35645 15H3.6875L0.6875 12L3.51562 9.1709L9.17285 14.8281Z\" fill=\"currentColor\"/><path d=\"M12.001 9C13.6578 9 15.001 10.3431 15.001 12C15.001 13.6569 13.6578 15 12.001 15C10.3441 15 9.00098 13.6569 9.00098 12C9.00098 10.3431 10.3441 9 12.001 9Z\" fill=\"currentColor\"/><path d=\"M23.3145 12L20.4854 14.8281L14.8291 9.17188C14.7698 9.11259 14.7084 9.05549 14.6455 9H20.3145L23.3145 12Z\" fill=\"currentColor\"/><path d=\"M8.00098 12C8.00098 12.084 8.00369 12.1673 8.00879 12.25L4.00098 8.24219V4H8.00098V12Z\" fill=\"currentColor\"/><path d=\"M14.8291 3.51465L9.17285 9.17188C9.11356 9.23116 9.05647 9.29257 9.00098 9.35547V3.68652L12.001 0.686523L14.8291 3.51465Z\" fill=\"currentColor\"/><path d=\"M20.001 4V8H12.001C11.9167 8 11.833 8.00267 11.75 8.00781L15.7588 4H20.001Z\" fill=\"currentColor\"/></g><defs><clipPath id={\"clip0_15679_27848-\" + instanceId}><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs></>} />;\n}));\n\nexport default IconReferenceImage;\n",
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\ntype Props = CentralIconBaseProps & {\n  ariaLabel?: string;\n  /** Internal generated shapes that contain instance-scoped SVG references. */\n  renderShapes?: (instanceId: string) => React.ReactNode;\n};\ntype RenderProps = Props & { svgRef?: React.ForwardedRef<SVGSVGElement> };\n\nconst ModernCentralIconBase: React.FC<RenderProps> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: RenderProps },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return (\n            <CentralIconSvg\n              {...this.props.iconProps}\n              instanceId={this.state.instanceId}\n            />\n          );\n        }\n      };\n\nexport const CentralIconBase = React.forwardRef<SVGSVGElement, Props>(\n  (props, ref) =>\n    LegacyCentralIconBase ? (\n      <LegacyCentralIconBase iconProps={{ ...props, svgRef: ref }} />\n    ) : (\n      <ModernCentralIconBase {...props} svgRef={ref} />\n    ),\n);\nCentralIconBase.displayName = \"CentralIconBase\";\n\nconst CentralIconSvg: React.FC<RenderProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden,\n  \"aria-hidden\": ariaHiddenAttribute,\n  \"aria-label\": ariaLabelAttribute,\n  role,\n  svgRef,\n  renderShapes,\n  style,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\n  const masked = mode !== \"raw\" && !!maskId;\n  const hidden = ariaHiddenAttribute ?? ariaHidden ?? true;\n  const isHidden = hidden === true || hidden === \"true\";\n  const label = ariaLabelAttribute ?? ariaLabel;\n  const shapes = renderShapes\n    ? renderShapes(uniqueMaskId ?? instanceId ?? \"icon\")\n    : children;\n  return (\n    <svg\n      {...props}\n      ref={svgRef}\n      aria-hidden={hidden}\n      aria-label={ariaLabelAttribute}\n      role={role ?? (isHidden ? 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      {label && !isHidden && <title>{label}</title>}\n      {masked ? (\n        <>\n          <mask\n            id={uniqueMaskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <g fill=\"none\" style={{ color: \"#fff\" }}>\n              {shapes}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        shapes\n      )}\n    </svg>\n  );\n};\n"
  ],
  "mappings": "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",
  "debugId": "F922331BD16EBCAF64756E2164756E21",
  "names": []
}