@rws-aoa/react-library
Version:
RWS AOA Design System
24 lines • 651 B
TypeScript
import { BoxProps, SxProps } from '@mui/material';
import { ElementType } from 'react';
export interface AoaLogoProps extends BoxProps<ElementType<any, 'svg'>> {
/**
* Data-qa tag to apply to the search bar and input element
*/
readonly 'data-qa'?: string;
/**
* Any additional CSSProperties to pass to the component
*/
readonly sx?: SxProps;
}
/**
* Creates a logo using pre-defined Rijkswaterstaat SVG
*
* @example
* ```jsx
*
* <AoaLogo height={125} width={314}/>
*
* ```
*/
export declare function AoaLogo(props: AoaLogoProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Logo.d.ts.map