import * as React from "react";
import { Box } from "@chakra-ui/react";
/**
* Metadata is a UI component for showing metadata about something, as labels
* and their values.
*/
function Metadata({ children, ...props }) {
return (
{children}
);
}
function MetadataLabel({ children, ...props }) {
return (
{children}
);
}
function MetadataValue({ children, ...props }) {
return (
{children}
);
}
export default Metadata;
export { MetadataLabel, MetadataValue };