import React from 'react'; import { Markup } from './styled'; type Props = { position: Record; bdcolor: string; opacity: number; markupType: string; isCovered?: boolean; }; const index: React.SFC = ({ position, bdcolor, opacity, markupType, isCovered, }: Props) => ( ); export default index;