import { ComponentPropsWithoutRef, ElementRef, forwardRef } from "react"; export const FigmaIcon = forwardRef< ElementRef<"svg">, ComponentPropsWithoutRef<"svg"> >((props, ref) => { let { width, height } = props; if (width === undefined && height === undefined) { width = 10; height = 16; } return ( ); });