github
149 of 216 branches covered (0.0%)
Branch coverage included in aggregate %.
110 of 211 new or added lines in 9 files covered. (52.13%)
3958 of 4533 relevant lines covered (87.32%)
4.09 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
|
}; |
× |