import { cx } from '@emotion/css'; import * as React from 'react'; import { isUrl } from './utils'; export const renderValue = (value: string): string | React.ReactNode => { if (isUrl(value)) { return ( {value} ); } return value; };