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