"use client";
import * as React from "react";
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
import { useId } from "./util/useId";
interface SVGRProps {
  title?: string;
  titleId?: string;
}
const SvgFilePng = forwardRef(({
  title,
  titleId: _titleId,
  ...props
}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => {
  let titleId: string | undefined = useId();
  titleId = title ? _titleId ? _titleId : "title-" + titleId : undefined;
  return <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="none" viewBox="0 0 24 24" focusable={false} role="img" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill="currentColor" d="M7.006 16.193H7.7q.336 0 .532-.182a.65.65 0 0 0 .203-.497.63.63 0 0 0-.203-.49q-.196-.189-.532-.189h-.693z" /><path fill="currentColor" fillRule="evenodd" d="M5.25 4.5c0-.69.56-1.25 1.25-1.25H14a.75.75 0 0 1 .53.22l4 4c.141.14.22.331.22.53v4.25H21a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75v-7a.75.75 0 0 1 .75-.75h2.25zm1.5 7.75h10.5v-3.5H14.5c-.69 0-1.25-.56-1.25-1.25V4.75h-6.5zm8-6.44 1.44 1.44h-1.44zM5.956 19v-5.11H7.7q.54 0 .938.203.405.202.623.567.225.364.224.854 0 .483-.224.854-.225.364-.623.567a2.04 2.04 0 0 1-.938.203h-.693V19zm4.365 0v-5.11h1.225l1.323 3.955-.049-.595a36 36 0 0 1-.049-.679q-.014-.343-.014-.581v-2.1h.924V19h-1.225l-1.309-3.955q.021.225.042.532t.035.623q.021.315.021.56V19zm6.116.07q-.512 0-.896-.189a1.5 1.5 0 0 1-.602-.539 1.55 1.55 0 0 1-.21-.812v-2.17q0-.469.21-.812.216-.343.602-.532a1.95 1.95 0 0 1 .896-.196q.518 0 .896.196.384.189.595.532.216.344.217.812h-1.05q0-.308-.175-.469-.168-.16-.483-.161-.316 0-.49.161-.168.161-.168.469v2.17q0 .3.168.469.174.16.49.161.314 0 .483-.161.174-.168.175-.469v-.441h-.756V16.2h1.806v1.33q0 .462-.217.812a1.45 1.45 0 0 1-.595.539q-.378.189-.896.189" clipRule="evenodd" /></svg>;
});
export default SvgFilePng;