import { FC } from "react"; interface LogoProps { white?: boolean; } const Logo: FC = ({ white = false }) => (
Slash.sa
); export default Logo;