import * as React from 'react'; import classNames from 'classnames'; type Props = Readonly, HTMLDivElement> & { title?: string; borderColor?: string; }>; export default ({ title, borderColor, children, ...props }: Props) => (
{title &&

{title}

}
{children}
);