push
github
154 of 221 branches covered (0.0%)
Branch coverage included in aggregate %.
163 of 266 new or added lines in 14 files covered. (61.28%)
4014 of 4591 relevant lines covered (87.43%)
4.1 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
|
}; |
× |