import React from 'react'; import classNames from 'classnames'; import { PropsWithElementAttributes } from '../utils'; export type DataLabelProps = PropsWithElementAttributes<{ data?: string | number; label?: string; }>; export const DataLabel = ({ data = 'data', label = 'label', className, style }: DataLabelProps) => { return (
{label} {data}
); };