@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
10 lines • 311 B
TypeScript
import type React from 'react';
import { BoxProps } from '@mui/material';
interface LogoContainerProps extends BoxProps {
logoSrc?: string | React.ReactNode;
logoAlt?: string;
width?: string;
}
declare const Logo: React.FC<LogoContainerProps>;
export default Logo;
//# sourceMappingURL=logo.d.ts.map