| Conditions | 3 |
| Total Lines | 19 |
| Code Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import React from 'react'; |
||
| 6 | |||
| 7 | function Sponsor({ title, Svg, image, url, description}) { |
||
| 8 | return ( |
||
| 9 | <div className={clsx('col col--4')}> |
||
| 10 | <div className="text--center"> |
||
| 11 | <a href={url}> |
||
| 12 | { |
||
| 13 | Svg ? <Svg className={styles.sponsorImage} alt={title} /> : null |
||
| 14 | } |
||
| 15 | { |
||
| 16 | image ? <img src={image} alt={title} className={styles.sponsorImage}/> : null |
||
| 17 | } |
||
| 18 | </a> |
||
| 19 | </div> |
||
| 20 | <div className="text--center padding-horiz--md"> |
||
| 21 | <h3>{title}</h3> |
||
| 22 | <p>{description}</p> |
||
| 23 | </div> |
||
| 24 | </div> |
||
| 25 | ); |
||
| 63 |