import React from "react"; import { OverlayContent, OverlayContentProps } from "./index"; export const Textual: React.FunctionComponent = ({ children, ...props }) => { return ( {children} ); };