import { type JSX, splitProps } from 'solid-js'; import { cn } from '../utils/cn'; export interface SkeletonProps extends JSX.HTMLAttributes {} function Skeleton(props: SkeletonProps) { const [local, rest] = splitProps(props, ['class']); return (
); } export { Skeleton };