import * as React from 'react'; import { css } from '@breakaway/react-styles'; import styles from '@breakaway/react-styles/css/components/AboutModalBox/about-modal-box'; export interface AboutModalBoxBrandProps extends React.HTMLProps { /** additional classes added to the About Modal Brand */ className?: string; /** the URL of the image for the Brand. */ src?: string; /** the alternate text of the Brand image. */ alt: string; } export const AboutModalBoxBrand: React.FunctionComponent = ({ className = '', src = '', alt, ...props }: AboutModalBoxBrandProps) => (
{alt}
); AboutModalBoxBrand.displayName = 'AboutModalBoxBrand';