@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
8 lines (7 loc) • 308 B
TypeScript
type LogoVariant = 'color' | 'black' | 'white';
interface LogoProps {
variant?: LogoVariant;
}
export declare function Logomark({ variant }: LogoProps): import("react/jsx-runtime").JSX.Element;
export declare function LogoFull({ variant }: LogoProps): import("react/jsx-runtime").JSX.Element;
export {};