import React from "react"; type Props = { className?: string; width?: string | number; height?: string | number; color?: string; }; export const OnboardingLogo: React.FC = ({ width = "378", height = "117", color = "#858E96", className, }) => ( );