"use client";
import React, { forwardRef, type Ref, type SVGProps } from "react";
import { useId } from "./util/useId";
interface SVGRProps {
  title?: string;
  titleId?: string;
}
const SvgWalletFill = 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="M16.67 2.665a.75.75 0 0 0-.867-.388l-4.519 1.232c-.281.077-.226.491.066.491h5.584a.25.25 0 0 0 .224-.362zM4 5.25A1.75 1.75 0 0 0 2.25 7v11c0 .966.784 1.75 1.75 1.75h15A1.75 1.75 0 0 0 20.75 18v-1.25a.25.25 0 0 0-.25-.25h-5.154q-.105 0-.208-.01a4.27 4.27 0 0 1-1.666-.479 3.6 3.6 0 0 1-1.375-1.268c-.39-.62-.597-1.373-.597-2.243s.208-1.622.597-2.242a3.6 3.6 0 0 1 1.376-1.27A4.3 4.3 0 0 1 15.35 8.5h5.15a.25.25 0 0 0 .25-.25V7A1.75 1.75 0 0 0 19 5.25zM20 10h-4.647S13 10 13 12.5s2.353 2.5 2.353 2.5H20a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1m-4.5 1.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5z" clipRule="evenodd" /></svg>;
});
export default SvgWalletFill;