/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { forwardRef } from 'react'; import type { ComponentProps } from 'react'; import clsx from 'clsx'; import styles from './skeleton.module.css'; export interface SkeletonProps extends ComponentProps<'div'> { width?: string | number; height?: string | number; } export const Skeleton = forwardRef( ({ className, width, height, style, ...props }, ref) => { return (
); }, ); Skeleton.displayName = 'Skeleton';