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