import { h } from 'preact'; import clsx from 'clsx'; type Props = { className?: string; }; export function Preloader({ className }: Props) { return
; }