"use client";
import React, { forwardRef, type Ref, type SVGProps } from "react";
import { useId } from "./util/useId";
interface SVGRProps {
  title?: string;
  titleId?: string;
}
const SvgTasklistSaveFill = 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" fillRule="evenodd" d="M4.25 3.5c0-.69.56-1.25 1.25-1.25h13c.69 0 1.25.56 1.25 1.25v7.318a.25.25 0 0 1-.427.177l-.409-.41A2 2 0 0 0 17.5 10H10a2 2 0 0 0-2 2v9q0 .203.039.395c.035.174-.087.355-.265.355H5.5c-.69 0-1.25-.56-1.25-1.25zM12.37 7a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75m-1.27-.8a.75.75 0 1 0-1.2-.9l-.808 1.078a.25.25 0 0 1-.377.026L8.53 6.22a.75.75 0 0 0-1.06 1.06l1 1A.75.75 0 0 0 9.6 8.2zm.9 5.3h-2a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h1.5a.25.25 0 0 0 .25-.25V17a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 .75.75v4.25c0 .138.112.25.25.25H19a.5.5 0 0 0 .5-.5v-7.5a.5.5 0 0 0-.146-.354l-1.5-1.5a.5.5 0 0 0-.354-.146H17a.25.25 0 0 0-.25.25v1.75a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-1.75a.25.25 0 0 0-.25-.25m1.5 10a.25.25 0 0 1-.25-.25V18a.25.25 0 0 1 .25-.25h2a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.25.25zm.5-10a.25.25 0 0 0-.25.25v.75c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25v-.75a.25.25 0 0 0-.25-.25z" clipRule="evenodd" /></svg>;
});
export default SvgTasklistSaveFill;