import * as _ from 'lodash'; import * as React from 'react'; import { link } from '../../../utils/helpers'; const ComponentPropsOutline: any = (props: ComponentPropsOutlineProps) => { const { displayNames } = props; if (displayNames.length < 2) return null; return ( ); }; export interface ComponentPropsOutlineProps { displayNames: string[]; } export default ComponentPropsOutline;