import classNames from 'classnames' import Button from 'components/Button' import DocsLink from 'components/DocsLink' import Text from 'components/Text' interface Props { title: string copy: string className?: string children?: React.ReactNode button?: ButtonProps docs?: DocLinkType } export default function FullOverlayContent(props: Props) { return (
{props.title} {props.copy} {props.children && (
{props.children}
)} {props.button && (
)} {props.docs && }
) }