import clsx from 'clsx'; import { FunctionComponent } from 'react'; import './style.scss'; interface Props { className?: string; size?: number; } const AutomatticLogo: FunctionComponent< Props > = ( { className, size = 96 } ) => ( ); export default AutomatticLogo;