import { ShellSubHeading } from "../layout"; import Meta from "../meta/Meta"; import { SkeletonText } from "../skeleton"; export function SkeletonLoader({ className, title, description, }: { className?: string; title?: string; description?: string; }) { return ( <> } {...{ className }} /> {title && description && } ); } function SkeletonItem() { return (
  • ); }