import React from "react"; import classNames from "classnames"; import { Box, BoxProps } from "../Box"; import { bem } from "../../utilities/bem"; const cn = "Loading"; export const Loading = ({ className, ...rest }: BoxProps) => { return ( ); };