import React from 'react'; import { Icon } from 'antd'; import classnames from 'classnames'; import './index.less'; interface Props { size?: 'large' | 'small'; inline?: boolean; tip?: string; overlay?: boolean; } const Loader: React.SFC = ({ inline, size, tip, overlay }) => (
{tip &&
{tip}
}
); export default Loader;