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