import type * as React from 'react'; import { SvgIcon, IconCommonProps } from './SvgIcon'; const defaultProps = { className: '', title: 'WhiteHouse.gov', viewBox: '0 0 670 450', }; export function WhiteHouseLogo(props: IconCommonProps): React.ReactElement { const iconCssClasses = `ds-c-icon--hhs-logo ${props.className || ''}`; return ( ); }