import * as React from "react"; import type { SVGProps } from "react"; import { Ref, forwardRef } from "react"; interface SVGRProps { title?: string; titleId?: string; } const LgDelete = ({ title, titleId, ...props }: SVGProps & SVGRProps, ref: Ref) => {title ? {title} : null}; const ForwardRef = forwardRef(LgDelete); export default ForwardRef;