2022-07-20 08:42:05 +00:00
|
|
|
export default function Orbiter({ primary, secondary, backgroundColor }) {
|
2022-07-19 10:13:49 +00:00
|
|
|
return (
|
2022-07-20 08:42:05 +00:00
|
|
|
<li className="orbiter">
|
|
|
|
<div
|
|
|
|
className="orbiter-bg"
|
|
|
|
style={{
|
|
|
|
backgroundColor: backgroundColor,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<div className="orbiter-content content-center">
|
2022-07-19 10:13:49 +00:00
|
|
|
<div className="feature">
|
|
|
|
<div className="feature-item primary">{primary}</div>
|
|
|
|
<div className="feature-item secondary">{secondary}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|