import './index.less' import { Row, Col } from 'ant-design-vue' import 'ant-design-vue/es/grid/style/index.less' import type { CSSProperties, FunctionalComponent } from 'vue' type LoadingProps = { /** Prefix */ prefix?: string } const Loading: FunctionalComponent = (props, { attrs }) => { const { prefix } = props return (
) } export default Loading