import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/AboutModalBox/about-modal-box'; export interface AboutModalBoxBrandProps extends React.HTMLProps { /** The URL of the image for the brand. */ src: string; /** The alternate text of the brand image. */ alt: string; } export const AboutModalBoxBrand: React.FunctionComponent = ({ src, alt, ...props }: AboutModalBoxBrandProps) => (
{alt}
); AboutModalBoxBrand.displayName = 'AboutModalBoxBrand';