You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			204 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Markdown
		
	
			
		
		
	
	
			204 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Markdown
		
	
### Various sizes
 | 
						|
 | 
						|
```jsx
 | 
						|
<Image height='200' width='199' url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' url={util.pngObjectUrl} />
 | 
						|
<Image height='99' width='99' url={util.pngObjectUrl} />
 | 
						|
```
 | 
						|
 | 
						|
### Various curved corners
 | 
						|
 | 
						|
```jsx
 | 
						|
<Image height='149' width='149' curveTopLeft url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' curveTopRight url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' curveBottomLeft url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' curveBottomRight url={util.pngObjectUrl} />
 | 
						|
```
 | 
						|
 | 
						|
### With bottom overlay
 | 
						|
 | 
						|
```jsx
 | 
						|
<Image height='149' width='149' bottomOverlay url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' bottomOverlay curveBottomRight url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' bottomOverlay curveBottomLeft url={util.pngObjectUrl} />
 | 
						|
```
 | 
						|
 | 
						|
### With play icon
 | 
						|
 | 
						|
```jsx
 | 
						|
<Image height='200' width='199' playIconOverlay url={util.pngObjectUrl} />
 | 
						|
<Image height='149' width='149' playIconOverlay url={util.pngObjectUrl} />
 | 
						|
<Image height='99' width='99' playIconOverlay url={util.pngObjectUrl} />
 | 
						|
```
 | 
						|
 | 
						|
### With dark overlay and text
 | 
						|
 | 
						|
```jsx
 | 
						|
<div>
 | 
						|
  <div>
 | 
						|
    <Image height="200" width="199" darkOverlay url={util.pngObjectUrl} />
 | 
						|
    <Image height="149" width="149" darkOverlay url={util.pngObjectUrl} />
 | 
						|
    <Image height="99" width="99" darkOverlay url={util.pngObjectUrl} />
 | 
						|
  </div>
 | 
						|
  <hr />
 | 
						|
  <div>
 | 
						|
    <Image
 | 
						|
      height="200"
 | 
						|
      width="199"
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="149"
 | 
						|
      width="149"
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="99"
 | 
						|
      width="99"
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
```
 | 
						|
 | 
						|
### With caption
 | 
						|
 | 
						|
```jsx
 | 
						|
<div>
 | 
						|
  <div>
 | 
						|
    <Image
 | 
						|
      height="200"
 | 
						|
      width="199"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="149"
 | 
						|
      width="149"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="99"
 | 
						|
      width="99"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
  <hr />
 | 
						|
  <div>
 | 
						|
    <Image
 | 
						|
      height="200"
 | 
						|
      width="199"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="149"
 | 
						|
      width="149"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="99"
 | 
						|
      width="99"
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      darkOverlay
 | 
						|
      overlayText="+3"
 | 
						|
      url={util.pngObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
```
 | 
						|
 | 
						|
### With top-right X and soft corners
 | 
						|
 | 
						|
```jsx
 | 
						|
<div>
 | 
						|
  <div>
 | 
						|
    <Image
 | 
						|
      height="200"
 | 
						|
      width="199"
 | 
						|
      closeButton={true}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="149"
 | 
						|
      width="149"
 | 
						|
      closeButton={true}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="99"
 | 
						|
      width="99"
 | 
						|
      closeButton={true}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
  <br />
 | 
						|
  <div>
 | 
						|
    <Image
 | 
						|
      height="200"
 | 
						|
      width="199"
 | 
						|
      closeButton={true}
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="149"
 | 
						|
      width="149"
 | 
						|
      closeButton={true}
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
    <Image
 | 
						|
      height="99"
 | 
						|
      width="99"
 | 
						|
      closeButton={true}
 | 
						|
      attachment={{ caption: 'dogs playing' }}
 | 
						|
      onClick={() => console.log('onClick')}
 | 
						|
      onClickClose={attachment => console.log('onClickClose', attachment)}
 | 
						|
      softCorners={true}
 | 
						|
      url={util.gifObjectUrl}
 | 
						|
      i18n={util.i18n}
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
```
 |