github
149 of 215 branches covered (0.0%)
Branch coverage included in aggregate %.
102 of 183 new or added lines in 10 files covered. (55.74%)
3881 of 4364 relevant lines covered (88.93%)
4.16 hits per line
|
import { SocialIcons } from './footer-block'; |
2✔ |
|
import React from 'react'; |
2✔ |
|
|
2✔ |
|
export const SocialMediaSection = ({ |
2✔ |
NEW
|
socialButtons, |
× |
NEW
|
}: { |
× |
NEW
|
socialButtons: SocialIcons[];
|
× |
NEW
|
}) => { |
× |
NEW
|
return (
|
× |
NEW
|
<div className="flex gap-gap-lg max-lg:justify-center">
|
× |
NEW
|
{socialButtons.map((item) => ( |
× |
NEW
|
<React.Fragment key={item.href}>{item.icon}</React.Fragment> |
× |
NEW
|
))} |
× |
NEW
|
</div> |
× |
NEW
|
); |
× |
NEW
|
}; |
× |