import React from 'react'; import cn from 'classnames'; export default function ({ children = null, loading = true, size = 'tiny', ...props }) { return !loading ? ( children ) : ( ); }