import React from 'react'; import cn from 'classnames'; import { TextEllipsis } from 'UI'; interface Props { className?: string; label: string; value?: string; } export default function MetaItem(props: Props) { const { className = '', label, value } = props; return (
); }