UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

17 lines (16 loc) 301 B
export interface ImageProps { classes?: string[]; src: string; alt?: string; width?: number; height?: number; shape?: string; } declare const Image: { (props: ImageProps): any; defaultProps: { alt: string; shape: string; }; }; export default Image;