0% found this document useful (0 votes)
8 views1 page

Code Fin Lens Fix

Uploaded by

Nghia Tuan Nghia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Code Fin Lens Fix

Uploaded by

Nghia Tuan Nghia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

const ImageIntraday = (params) => {

return <React.Fragment>
<span>
<img src = {params.value} style = {{width: '550px', height: '500px',
marginTop: '5%', borderRadius: '5px', padding: '7px', backgroundColor:
'#eae9d4'}}></img>
</span>
</React.Fragment>

const ImageLogo = (params) => {

return <React.Fragment>
<span>
<div style = {{fontSize: '40px', fontWeight: 'bold', marginBottom:
'10%'}}>{params.data.TICKERVN}</div>
<img src = {params.value} style = {{width: '250px', height: '120px',
marginTop: '5%', borderRadius: '5px', padding: '10px', backgroundColor:
'#eae9d4'}}></img>
</span>
</React.Fragment>

const ImageChart = (params) => {

return <React.Fragment>
<div style = {{position: 'relative', zIndex: '10'}}>
<img src = {params.value} style = {{width: '1000px', height: '550px',
right: '300px', marginTop: '5%', marginRight: '100px', marginLeft: '5%',
borderRadius: '5px', padding: '10px', backgroundColor: '#eae9d4'}}></img>
</div>
</React.Fragment>

You might also like