import React from 'react'; interface Props { size?: number | string; } export const Logo = ({ size = 100 }: Props) => ( );