@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
18 lines (17 loc) • 466 B
TypeScript
import * as React from 'react';
export type LogoProps = {
children?: React.ReactNode;
/**
* Provide the href attribute for the logo
*/
logoHref?: string;
/**
* Specify the location of the logo file
*/
logoSrc?: string;
/**
* Specify the string to the right of the logo
*/
productName?: React.ReactNode;
};
export declare const Logo: ({ children, logoHref, logoSrc, productName, }: LogoProps) => JSX.Element;