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