redbadger/website-honestly

View on GitHub
site/pages/our-work/slices/shared/logo/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow

import React from 'react';
import styles from './styles.css';

type SliceName = 'camden' | 'fm' | 'ft' | 'sky';

type Props = {
  slice: SliceName,
  src: string,
};

export default function Logo({ slice, src }: Props) {
  return <img src={src} className={styles[slice]} alt="" />;
}