@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
11 lines (10 loc) • 337 B
TypeScript
import React from 'react';
import { ThemeName } from '../../../theme/interfaces';
export declare type LogoType = string | LogoComponentType;
export declare type LogoComponentType = ({ themeName }: {
themeName: ThemeName;
}) => JSX.Element;
declare const LayoutHeader: React.FC<{
logo?: LogoType;
}>;
export default LayoutHeader;