import type { ComponentProps, FC } from 'react' import classNames from '@/utils/classnames' type SkeletonProps = ComponentProps<'div'> export const SkeletonContainer: FC = (props) => { const { className, children, ...rest } = props return (
{children}
) } export const SkeletonRow: FC = (props) => { const { className, children, ...rest } = props return (
{children}
) } export const SkeletonRectangle: FC = (props) => { const { className, children, ...rest } = props return (
{children}
) } export const SkeletonPoint: FC = (props) => { const { className, ...rest } = props return (
ยท
) } /** Usage * * * * * * * * * * */