UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 887 B
module.exports = "import * as React from 'react';\nimport {\n Image,\n IImageProps,\n ImageFit,\n Label\n} from '../../../../index';\n\nexport class ImageNoneExample extends React.Component<any, any> {\n public render() {\n let imageProps: IImageProps = {\n src: 'http://placehold.it/500x250',\n imageFit: ImageFit.none,\n width: 350,\n height: 150\n };\n\n return (\n <div>\n <Label>The image is larger than the frame, so it is cropped to fit. The image is positioned at the upper left of the frame.</Label>\n <Image { ...imageProps as any } />\n <br />\n <Label>The image is smaller than the frame, so there is empty space within the frame. The image is positioned at the upper left of the frame.</Label>\n <Image { ...imageProps as any } src='http://placehold.it/100x100' />\n </div>\n );\n }\n}\n";