// @flow import React from 'react'; import classnames from 'classnames'; type Props = { text: ?string, padded?: boolean, }; export default function Empty(props: Props) { const { text = '', padded = false } = props; return (
{text && (

{text}

)}
); }